复制代码
- SomeObject
*obj = [[SomeObject alloc] initWithCenter:centerPoint
radius:radius];
|
和
复制代码
- SomeObject
*obj = [SomeObject alloc];[obj initWithCenter:centerPoint
radius:radius];
|
这两句不是等效的。第二句的执行结果可能返回无效对象。
ios之alloc和init
原文:http://www.cnblogs.com/yulang314/p/3551502.html