iOS常用代码块Snippets

2019-08-23  本文已影响0人  加盐白咖啡

属性

/** <#注释#> */
@property (nonatomic, strong) <#Class#> *<#name#>;
/** <#注释#> */
@property(nonatomic, weak) <#Class#> *<#name#>;
/** <#注释#> */
@property (nonatomic, copy) NSString *<#string#>;
/** <#注释#> */
@property (nonatomic, assign) <#Class#> <#name#>;
/** <#注释#> */
@property(nonatomic, copy) void(^<#name#>)(<#type#> <#name#>);
/** <#注释#> */
@property(nonatomic, copy) <#MyBlock#> <#blockName#>;
/** <#注释#> */
@property(nonatomic, weak) id<<#delegatename#>> delegate;
/** <#注释#> */
@property(nonatomic, assign) BOOL <#name#>;

mark

#pragma mark - life生命区
#pragma mark - lazy懒加载
#pragma mark - <#内容#>

枚举值

typedef NS_ENUM(NSUInteger, <#MyEnum#>) {
    <#MyEnumValueA#>,
    <#MyEnumValueB#>,
    <#MyEnumValueC#>,
};

alert提示框

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"温馨提示" message:@"" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
    
}];
UIAlertAction *cancleAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
    
}];
[alert addAction:cancleAction];
[alert addAction:sureAction];
[self presentViewController:alert animated:YES completion:nil];

迁移快捷代码

上一篇下一篇

猜你喜欢

热点阅读