im new to iphone development here i dont the signatures of these methods like ,alloc,init and nsobject,ns开发者_StackOverflow中文版string.
can any one please help me for these signatures.
thank you in advance.
You should use apple documentation for this.
-(id)init;
+ (id)alloc;
NSObject *tempObject = [[NSObjectalloc]init];
NSString *tempString = [[NSString alloc]init];
精彩评论