iOS-Code-Snippet
阿新 • • 發佈:2018-11-28
1.單行註釋
/** <#單行註釋#> */
2.mark註釋
#pragma mark - <#Mark-註釋#>
3.可變陣列
/** <#註釋#> */ @property (nonatomic, strong) NSMutableArray * <#Array#> ;
4.修飾常量布林等基本型別(assign)
/** <#註釋#> */ @property (nonatomic, assign) <#NSInteger#> <#count#>;
5.修飾代理
@property (nonatomic, weak) id<<#MyDelegate#>> delegate;
6.修飾Block
/** <#BlockName#> */ @property (nonatomic, copy) <#Block#> <#block#>;
7.修飾字符串
/** <#註釋#> */ @property (nonatomic, strong) <#NSString#> * <#str#> ;
8.主執行緒
dispatch_async(dispatch_get_main_queue(), <#^(void)block#>)
9.Swift Frame快捷鍵
CGRect(x:<#int#> , y: <#int#> , width:<#int#> , height: <#int#> )