I have found that after calling [self performSelector:@selector(method1:) withObject:self.tableView afterDelay:3];
that self.tableView
's retainCount
changes? Why?
Thank you very much!
I have found that after calling [self performSelector:@selector(method1:) withObject:self.tableView afterDelay:3];
that self.tableView
's retainCount
changes? Why?
Thank you very much!
I believe the retain could of your table view would be incremented because calling
performSelector: withObject: afterDelay:
retains the parameter so that it isn't gone when the method finally is executed. Documentation here.