码迷,mamicode.com
首页 > 移动开发 > 详细

iOS - Storyboard 使用 UIRefreshControl 下拉刷新

时间:2016-02-19 12:15:16      阅读:392      评论:0      收藏:0      [点我收藏+]

标签:

1. 使用条件: 在UITableViewController中使用

2.可以通过代码 : 

  [self.refreshControl addTarget:self action:@selector(refreshControlAction:) forControlEvents:UIControlEventValueChanged];
- (void)refreshControlAction:(UIRefreshControl *)sender {
        [self.tableView reloadData];
        [sender endRefreshing];
}

 3.通过SB : 在UITableViewController 的属性中 refresh 勾选 enable 

iOS - Storyboard 使用 UIRefreshControl 下拉刷新

标签:

原文地址:http://www.cnblogs.com/aLaWish/p/5200285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!