IOS6.0自带下拉刷新控件UIRefreshControl
Posted slgkaifa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS6.0自带下拉刷新控件UIRefreshControl相关的知识,希望对你有一定的参考价值。
1.UIRefreshControl必需要在ios6.0以后才干使用,同一时候他仅仅能在UITableViewController类中才干够使用
2.使用比較简单
self.refreshControl = [[UIRefreshControl alloc]initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 100)];
[self.refreshControl addTarget:self action:@selector(refresh:) forControlEvents:UIControlEventValueChanged];
[self.tableView.tableHeaderView addSubview:self.refreshControl];
3.下拉之后refreshControl会一直显示,直到调用[self.refreshControl endRefreshing];
依照惯例还是附上demo
http://pan.baidu.com/s/1kTEbUmF
以上是关于IOS6.0自带下拉刷新控件UIRefreshControl的主要内容,如果未能解决你的问题,请参考以下文章