toNewbie 问题:有人可以帮助我了解 initWith.... 方法的接收者是否拥有返回对象的所有权并应该管理它。例如:
NSString *msg; //could be used to hold some data, then
[msg initWithFormat: @"some text"]; //do I need to do a retain or is the method returning an auto-released string object
只是试图让我的头脑围绕不明确使用 alloc 的方法