Allen Chiang

iOS程序猿的blog

© 2014. All rights reserved.

ARC & Non-ARC

In a non-ARC environment this Rules to remember

Take ownership of a object in this methods which name likes

In ARC , follow below rules

the property qualifier means

Property modifier Ownership qualifier
assign __unsafe_unretained
copy __strong(note:new copied object is assigned.)__strong
retain __strong
strong __strong
weak __weak
unsafe_unretained __unsafe_unretained
comments powered by Disqus