I cannot find many references to this warning anywhere. I have two view controllers that offer pull-to-refresh control. One is fine. The other produces the warning above. I copied the code from one to the other.
The code is as follows (PFUser refers to 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 {
Has anyone else encountered this? and is there a work-around/fix?
Do it inside viewDidLoad
method.
In my case, this warning popped up since I was doing collectionView.refreshControl = nil
while refreshControl
was animating. Calling refreshControl.endRefreshing()
before doing that eliminated the warning.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With