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 下拉刷新的主要内容,如果未能解决你的问题,请参考以下文章
Facebook 身份验证 iOS 使用 Storyboard