我目前有一个UIViewController
有两个UIViews
,通过segmentedControl
隐藏和取消隐藏它们。我希望能够实现pull-to-refresh
功能,如果我有一个UITableViewController
,这很容易。但我现在没有这个,所以我很遗憾该怎么做。
这显然会给我错误,因为UIViewController
没有refreshControl
UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
refreshControl.tintColor = [UIColor magentaColor];
self.refreshControl = refreshControl;
感谢您的帮助!
答案 0 :(得分:-1)
UIRefreshControl只能在UITableViewController类中使用。