iOS开发代码规范整理

2019-08-27  本文已影响0人  有O梦想的咸鱼

iOS代码规范

Apple官方文档:文档

变量

HomeViewController.h
<TipsViewDelegate>
NSString *personName = @"张三";
UIButton *nameButton; 
@property (nonatomic, strong) UIButton *nameButton;

#define HOME_PAGE @"";
#define MY_MIN(A, B)  ((A)>(B)?(B):(A))

常量

static NSString * const kMsg = @”MSG”;
.h
extern NSString * const badgeNameNotification;
.m
static NSString * const badgeNameNotification = @"badgeNameNotification";

声明cell的重用字符

k + cell的名称 +identifier
比如: QYHomeItemTableViewCell的标识符
kQYHomeItemTableViewCellIdentifier

枚举

枚举规则:枚举名同类名规则,加项目前缀,大驼峰命名;
枚举值去掉前缀,大驼峰命名

typedef NS_ENUM(NSInteger, QYHomeControllerSelectType) {
        HomeControllerSelectTypeOne,
        HomeControllerSelectTypeTwo,
    };

方法

方法使用小驼峰法命名。
能反应出这个方法是什么含义。
执行性的方法应该以动词开头。
返回性的方法应该以返回的内容开头。
- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)object;
- (NSString *)stringWithString:(NSString *)string;
类的实例应为回调方法的参数之一;
回调方法的参数只有类本身的情况,方法名要符合实际含义;
以类的名字开头(如果回调方法有两个以上参数的情况);
-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section;
-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView;

在类.m中根据不同功能代码来进行分类:

#pragma mark - Initialization

#pragma mark - LifeCycle

#pragma mark - override

#pragma mark - Actions

#pragma mark - Delegates

#pragma mark - Public

#pragma mark - Private

#pragma mark - Getter & Setter 

CGRect函数

推荐: 可读性比较高
CGRect frame = self.view.frame; 
CGFloat x = CGRectGetMinX(frame); 
CGFloat y = CGRectGetMinY(frame); 
CGFloat width = CGRectGetWidth(frame); 
CGFloat height = CGRectGetHeight(frame); 

不推荐:
CGRect frame = self.view.frame;  
CGFloat x = frame.origin.x;  
CGFloat y = frame.origin.y;  
CGFloat width = frame.size.width;  
CGFloat height = frame.size.height;  

注释

方法注释:方法外部用option + command + /,方法内部用//注释。
/**
 改变原始文本

 @param originalString 原始文本
 */
- (NSString *)changeStringWithOriginalString:(NSString *)originalString {
    //输入的原始文本
}

属性,模型注释
///设备代码串
@property (nonatomic, copy) NSString *deviceCodeString;

持续更新。

上一篇 下一篇

猜你喜欢

热点阅读