使用UIViewController中的refreshControl

时间:2013-04-03 06:01:22

标签: ios objective-c pull-to-refresh uirefreshcontrol

我目前有一个UIViewController有两个UIViews,通过segmentedControl隐藏和取消隐藏它们。我希望能够实现pull-to-refresh功能,如果我有一个UITableViewController,这很容易。但我现在没有这个,所以我很遗憾该怎么做。

这显然会给我错误,因为UIViewController没有refreshControl

UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
refreshControl.tintColor = [UIColor magentaColor];
self.refreshControl = refreshControl;

感谢您的帮助!

1 个答案:

答案 0 :(得分:-1)

UIRefreshControl只能在UITableViewController类中使用。