Objc Interview Checklist Answers
@property中有哪些属性关键字? nonatomic (thread-unsafe) atomic (default, thread safe) strong weak assign copy getter (custom getter method name) setter (custom setter method name) readwrite (default) readonly weak属性需要在dealloc中置nil么? 不需要,r...