内容简介:在上一篇文章中,提到了封装弹窗控制器,刚好项目中用到了弹窗tableView列表,所以趁热打铁,也就拿过来了。先看看项目效果:
在上一篇文章中,提到了封装弹窗控制器,刚好项目中用到了弹窗tableView列表,所以趁热打铁,也就拿过来了。先看看项目效果:
HLPopTabView.gif
主要的设计思路和上篇文章的一样,不过是将弹出的view设置成tableView,cell的点击事件通过block回调。
使用方法
-
倒入头文件,之际创建
NSArray * arr = @[@"北京",@"上海",@"天津",@"广州",@"深圳",@"浙江",@"杭州",@"丽江"]; HLPopTableView * hlPopView = [HLPopTableView initWithFrame:CGRectMake(0, 0, sender.width, 200) dependView:sender textArr:arr block:^(NSString *region_name, NSInteger index) { }]; [self.view addSubview:hlPopView];
-
dependView: 弹窗的依赖视图,比如点击按钮,直接将按钮控件传入,就会在下方创建弹出的tableView
相关代码
1.创建自定义的弹窗视图,继承于UIView,.h中申明方法
@interface HLPopTableView : UIView @property(nonatomic, assign)BOOL isTop; @property (nonatomic, copy) void(^sendStrBlock)(NSString *, NSInteger); + (instancetype)initWithFrame:(CGRect)frame dependView:(UIView *)view textArr:(NSArray *)textArr block:(void(^)(NSString * region_name, NSInteger index))block; @end
2.在.m中的话只要创建就完事了,并没有什么难点。具体的代码可以去Demo中下载查看。
最后附上代码链接:
gibHub地址: https://github.com/MrBMask
以上所述就是小编给大家介绍的《TableView弹窗 弹性设置,一行代码接入》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Design systems
Not all design systems are equally effective. Some can generate coherent user experiences, others produce confusing patchwork designs. Some inspire teams to contribute to them, others are neglected. S......一起来看看 《Design systems》 这本书的介绍吧!