命名规范

方法

[self setTbvAppearance];
[self setUIAppearance];
[self setClvAppearance];//设置Clv
[self setLocalData];//设置本地数据

- (void)setTbvAppearance{
    
}
/* 按钮点击事件*/
- (void)onFilterBtnClicked{
}

- (void)didSelectDateByCalendar:(NSIndexPath *)indexPath;

缩写

### UI
tbvData  ---------------- UITableView  
clvData   ---------------- UICollectionView
btnLogin  ---------------- UIButton
labTitle   ----------------  UILabel
imvIcon  ----------------  UIImageView
tfName   ----------------  UITextField
txvName ----------------  UITextView
srvTitle  ----------------    UIScrollView
viewBg  ----------------    UIView
switchFlag  ----------------    UISwitch
 
### view
tbvCell  ----------------    UITableViewCell
tbvSectionHeadView  ----------------    UITableViewHeaderFooterView
tbvHeadView  ----------------    UIView

### 数据类型
strName   -------------  NSString
arrayTitle  -------------  NSArray
dicParm    -------------   NSDictionary



### 其他参数
viewTopLayoutHeight  -------------   NSLayoutConstraint

控制器方法顺序


#pragma mark **************************** 系统方法
#pragma mark **************************** 自定义方法
#pragma mark **************************** 代理方法
#pragma mark **************************** 懒加载

注意

文件名命名  不能类似   UIButtonCustom 这样,否则编译无效 12

你可能感兴趣的:(命名规范)