iOS - Storyboard 使用 UIRefreshControl 下拉刷新

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS - Storyboard 使用 UIRefreshControl 下拉刷新相关的知识,希望对你有一定的参考价值。

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 下拉刷新的主要内容,如果未能解决你的问题,请参考以下文章

iOS 9 Storyboard 教程(一上)

iOS中Storyboard使用要点记录

IOS多语言切换2-storyboard

Facebook 身份验证 iOS 使用 Storyboard

iOS - Storyboard 使用 UIRefreshControl 下拉刷新

iOS - 使用 StoryBoard 创建弹出视图