On Thu, May 28, 2009 at 5:42 PM, John Ku <john.c...@gmail.com> wrote: > Thank you all for the explanation. After reading over and experiment, I kind > of get what you all are saying.I've probably confused myself too much with > the dot syntax to use title = @"fdsfd". > > So if i have: > > NSMutableString *title = [[NSString alloc] init]; > [title setString: @"test"]; > > That would be correct and safe?
Assuming you meant [[NSMutableString alloc] init] and someplace later release it... then yes but why? Do you want a mutable string or just @"test"? If you are always going to draw the string "test" you can simply do the following... [@"test" drawAtPoint:origin withAttributes:nil]; -Shawn _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com