so with ARC, basically i don't have to type in [whatever release]; after every pointer?
just to make sure i understood it correctly
edit: what about retain? because I've read that retain isn't necessary also, so what would be put in the header when u identify the method?
for example, is it implying i don't need the retain? if not what would i put in place of it?
just to make sure i understood it correctly
edit: what about retain? because I've read that retain isn't necessary also, so what would be put in the header when u identify the method?
for example, is it implying i don't need the retain? if not what would i put in place of it?
Code:
@interface FirstViewController : UIViewController
{
IBOutlet UILabel *onHand;
}
@property (nonatomic, retain) UILabel *onHand;
@end
Last edited: