When should I use copy instead of using retain? I didn't quite get it.
objective-c copy retainI am using Xcode 6 and I have created my app with a UITableView and a custom Cell in it. This …
ios objective-c retainI'm new to Objective-C, I try to port an old Objective-C project written in an older version of Objective-C to …
objective-c automatic-ref-counting retainHere is code I am referring to. // Person.h @interface Person : NSObject { NSString *firstName; NSString *lastName; } @end // Person.m @implementation …
objective-c memory memory-management retainI am working on an iPhone app and am getting (null) references to IBOutlet fields in my controller. I have …
ios objective-c null iboutlet retainIf I do this: @interface RegisterController : UIViewController <UITextFieldDelegate> { IBOutlet UITextField *usernameField; } instead of this: @interface RegisterController : UIViewController <…
iphone retainAccording to this: NSString property: copy or retain? For NSString/NSMutableString, copy is recommended. How about NSArray/NSMutableArray?
objective-c properties copy nsarray retainIn a Cocoa Touch project, I need a specific class to have not only a single delegate object, but many …
iphone cocoa-touch delegates nsarray retainComplete PHP novice here, almost all my previous work was in ASP.NET. I am now working on a PHP …
php postback retain