仿照UITableView的UITableViewDataSource 协义 1.代理。让代理帮我们类完毕一些方法 2.完毕当前类不能完毕的事情还有传值等功能 实现方法 // 1. 声明一个协议 // 2. 声明协议中的方法 // 3. 声明一个遵守协议的id类型的指针 // 4. 实现协议方法 @ ...
分类:
其他好文 时间:
2017-06-09 21:28:05
阅读次数:
231
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section { view.tintColor = [UIColor clearColor]; ...
分类:
其他好文 时间:
2017-06-06 14:26:21
阅读次数:
246
先看Apple API Reference中对这两个方法的描述 beginUpdates endUpdates 从上述描述中我们大概可以总结出四点 1、beginUpdates 和 endUpdates必须成对使用 2、使用beginUpdates和endUpdates可以在改变一些行(row)的高 ...
分类:
其他好文 时间:
2017-06-02 14:50:29
阅读次数:
193
#import "ViewController.h" @interface ViewController ()<UITableViewDataSource,UITableViewDelegate,UIGestureRecognizerDelegate> @end @implementation Vi ...
分类:
其他好文 时间:
2017-06-01 10:38:47
阅读次数:
211
iOS7上tableView的切割线左边短了一点,要实现和iOS6中的效果还是有方法的,UITableView头文件中个属性: @property (nonatomic) UIEdgeInsets separatorInsetNS_AVAILABLE_IOS(7_0)UI_APPEARANCE_SE ...
分类:
移动开发 时间:
2017-05-28 10:51:52
阅读次数:
173
extension UITableView { func addNotifications() { NotificationCenter.default.addObserver(self, selector: #selector(boardWillShow(not:)), name: NSNotif ...
分类:
编程语言 时间:
2017-05-25 11:51:32
阅读次数:
175
郝萌主倾心贡献,尊重作者的劳动成果,请勿转载。 假设文章对您有所帮助。欢迎给作者捐赠。支持郝萌主,捐赠数额任意,重在心意^_^ 我要捐赠: 点击捐赠 Cocos2d-X源代码下载:点我传送 在处理UITableView表格时,我们希望用户可以和触摸单元格式进行交互。 可是希望用户在完毕交互之后,这些 ...
分类:
移动开发 时间:
2017-05-24 22:34:33
阅读次数:
265
github上关于iOS的各种开源项目集合(转) .entry-header UI 下拉刷新 EGOTableViewPullRefresh - 最早的下拉刷新控件。 SVPullToRefresh - 下拉刷新控件。 MJRefresh - 仅需一行代码就可以为UITableView或者Colle ...
分类:
移动开发 时间:
2017-05-23 16:58:14
阅读次数:
381
第一条:UITableViewCell 内容的设置 //文本放到最后 NSIndexPath *indexPath = [NSIndexPath indexPathForRow:_dataArr.count - 1 inSection:0]; [_tableView scrollToRowAtInd ...
分类:
移动开发 时间:
2017-05-16 14:54:11
阅读次数:
264
什么是UITableView 在众多移动应用中,能看到各式各样的列表数据 在iOS中,要实现展示列表数据,最常用的做法就是使用UITableViewUITableView继承自UIScrollView,因此支持垂直滚动,而且性能极佳 UITableView的两种样式 如何展示数据 UITableVi ...
分类:
其他好文 时间:
2017-05-15 18:21:47
阅读次数:
213