我有viewController,并且有一个tableView,我想在其中添加pull to refresh,但它没有propertyrefreshConroller,我需要做什么?
答案 0 :(得分:1)
对于您的信息,Apple不会在其对象库中发布refreshControl。 您可以使用几条简单的行来添加它:
UIRefreshControl *refresher=[[UIRefreshControl alloc] init];
[refresher addTarget:self
action:@selector(refreshData)
forControlEvents:UIControlEventValueChanged];
[tableView addSubview:refresher];
refreshData
是你的目标方法,做你想做的任何事情。