最近闲暇时间造了个轮子:
LKPopover
首先它是一个轻量级的popover。使用是非常方便的只需要一步就可以使用它,同时它的功能也非常强大,它就好比是一个容器把需要的内容添加进去就可以显示出来。
使用
eg:
demo.gif
UIImageView *image = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
image.image = [UIImage imageNamed:@"222"];
LKPopover *popover = [LKPopover popover];
[popover showAtView:sender withContentView:image];
UIButton *btn = [[UIButton alloc] initWithFrame:(CGRect){CGPointZero, CGSizeMake(100, 40)}];
[btn setTitle:@"I an btn" forState:UIControlStateNormal];btn.backgroundColor = [UIColor redColor];
LKPopover *lk = [LKPopover popover];CGPoint point = CGPointMake(CGRectGetMidX(senderBtn.frame), CGRectGetMidY(senderBtn.frame));
[lk showAtPoint:point popoverPostion:LKPopoverPositionTypeUp withContentView:btn inView:self.view];
UIView *titleView = self.navigationItem.titleView;CGPoint startPoint =CGPointMake(CGRectGetMidX(titleView.frame), CGRectGetMaxY(titleView.frame) + 20);
self.lkPopover.backgroundColor = [UIColor redColor];
self.lkPopover.contentInset = UIEdgeInsetsMake(5, 10, 5, 10);
self.lkPopover.maskType = LKPopoverMaskTypeNone;[self.lkPopover showAtPoint:startPointpopoverPostion:LKPopoverPositionTypeDownwithContentView:self.tableViewinView:self.tabBarController.view];
__weak typeof (self) weakSelf = self;
self.lkPopover.didDismssHandler = ^{[weakSelf bounceTargetView:titleView];};
用法非常简单没什么可讲的支持的方法属性也特别多,注释讲的也非常清楚。
下面说说干活
-
LKPopover支持懒显示
什么意思类:使用时不需要判断箭头显示位置,它会根据底部视图大小自动判断距离,通过距离长度判断箭头位置。
这里用到了坐标转换有点绕来个传送门UIView中坐标转换
-
设计思路
设计这个轮子时候考虑到容器与显示视图解耦问题,决定LKPopover
的大小是由显示视图来控制。
这样的写法当然是有好处的:
```
- (instancetype)initWithFrame:(CGRect)frame{
//CGRectZero 1>设计时考虑到根据显示的内容尺度画出mask
// 2>设置CGRectZero 创建时不会调用drawRect,保证设置属性有效果,也有点考虑性能防止反复绘制
// 3>先判断箭头位置和容器大小,在绘制容器
if (self = [super initWithFrame:CGRectZero]) {
[self propertyInit];
}
return self;
}
##联系我
欢迎提建议,可以直接提issue。
谢谢支持(顺便star)。
###本人早前的另一个轮子github:[LKFMDB](https://github.com/HectorLiuk/LKFMDB)
简书地址[对FMDB面向对象封装
](http://www.jianshu.com/p/811e87ac844e)
网友评论