OC高效率52之使用清晰協調的命名方式

#import <Foundation/Foundation.h>
/**
 *  1.起名時應聽從標準的OC命名規範,這樣建立出來的接口更容易爲開發者所理解。
 *  2.方法名要言簡意賅
 *  3.方法名裏不要使用縮略後的類型名稱
 *
 */
//好的命名方式:
@interface EOCRectangle : NSObject
@property (nonatomic , assign , readonly) float width;
@property (nonatomic , assign , readonly) float height;
-(id)initWithWidth:(float) width andHeight:(float)height;
-(EOCRectangle *)unionRectangle:(EOCRectangle*)rectangle;
@end
相關文章
相關標籤/搜索