文件名称:tableview 上拉刷新 下拉刷新功能实现
文件大小:121KB
文件格式:ZIP
更新时间:2017-04-14 11:48:10
iOS tableview 上拉刷新 下拉刷新
自己整理的一套“tableview 上拉刷新 下拉刷新功能实现”程序,经过测试,程序完全没有问题。网上开源的下拉-上拉刷新控件,普遍封装得过于复杂、耦合性强,此程序无耦合、可插拔式的刷新控件,对项目中的其他代码毫无侵入性,而且使用简单,3行代码就能集成刷新控件。 //添加下拉刷新 _header = [[MJRefreshHeaderView alloc] init]; _header.delegate = self; _header.scrollView = self.tableView; //添加上拉加载更多 _footer = [[MJRefreshFooterView alloc] init]; _footer.delegate = self; _footer.scrollView = self.tableView;
【文件预览】:
PullDownAndUpTest
----.DS_Store(6KB)
----PullDownAndUpTest.xcodeproj()
--------project.xcworkspace()
--------xcuserdata()
--------project.pbxproj(24KB)
----PullDownAndUpTestTests()
--------PullDownAndUpTestTests.m(670B)
--------PullDownAndUpTestTests-Info.plist(691B)
--------en.lproj()
----.git()
--------logs()
--------info()
--------index(3KB)
--------COMMIT_EDITMSG(15B)
--------objects()
--------HEAD(23B)
--------config(137B)
--------refs()
--------branches()
--------hooks()
--------description(73B)
----PullDownAndUpTest()
--------.DS_Store(12KB)
--------en.lproj()
--------main.m(341B)
--------PullDownAndUpTest-Info.plist(1KB)
--------PullDownAndUpTest-Prefix.pch(344B)
--------top_bar_img.png(4KB)
--------MJRefresh()
--------Images.xcassets()
--------RootViewController.h(488B)
--------AppDelegate.h(350B)
--------Model()
--------RootViewController.m(7KB)
--------AppDelegate.m(2KB)