I just went over to the ARC in my iPhone/iPad app and it works great, but I have this code in the files that are shared with other projects #if !__has_feature(objc_arc)
.
For example:
- (void)viewDidUnload {
#if !__has_feature(objc_arc)
[logInView release];
#endif
logInView = nil;
}
And my question is: Can I remove all this code by any search function in XCode or must I do it for hand?
Thanks!