# tesst **Repository Path**: sunjian2012/tesst ## Basic Information - **Project Name**: tesst - **Description**: No description available - **Primary Language**: Objective-C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-05-19 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # My Awesome Book This file file serves as your book's preface, a great place to describe your book's content and ideas. 请将他们的声明补充完整并手动写出他们的set方法 -(void)setA:(int)a { _a =a; } -(void)setName:(NSString *)name { MRC: if (_name != name) { [_name release]; _name =[name copy]; } ARC: if (_name != name) { _name =name; } } -(void)setObj:(NSObject *)obj { MRC: if (_obj = obj) { [_obj release]; _obj = [obj retain]; } ARC: if (_obj = obj) { _obj = obj; } }