我在任何地方都找不到很多关于此警告的引用。我有两个 View Controller ,它们提供“上拉”到“刷新”控制。一个很好。另一个产生上面的警告。我将代码从一个复制到另一个。
代码如下(PFUser引用Parse.com):
[super viewDidAppear:animated];
if ([PFUser currentUser]) {
NSLog(@"who's the user: %@", [PFUser currentUser]);
UIRefreshControl *refreshTable = [[UIRefreshControl alloc] init];
refreshTable.attributedTitle = [[NSAttributedString alloc] initWithString:@"One sec... refreshing"];
[refreshTable addTarget:self action:@selector(refresh:) forControlEvents:UIControlEventValueChanged];
self.refreshControl = refreshTable;
} else {
有人遇到过这种情况么?并有解决方法/修复程序吗?
最佳答案
在viewDidLoad
方法中执行此操作。