如果属性是copy、retain的话是等价的。如下:
- (void)setXXX:(NSString*)axx
{
if (_xxx != axx) {
[_xxx release];
_xxx = [axx copy];
}
}
拆分下就知道了, 将nil代入(即axx) 对nil进行retain/copy返回仍然是nil
所以,等价。
2024-02-14 11:00:47
如果属性是copy、retain的话是等价的。如下:
- (void)setXXX:(NSString*)axx
{
if (_xxx != axx) {
[_xxx release];
_xxx = [axx copy];
}
}
拆分下就知道了, 将nil代入(即axx) 对nil进行retain/copy返回仍然是nil
所以,等价。
下一篇:github和bitbucket