本人整理了一些常用的代碼塊
點我直達
Xcode 路徑
~/Library/Developer/Xcode/UserData/CodeSnippets
打開路徑將文件拖進去
代碼塊添加后需要重啟 Xcode
Swift
| 快捷鍵 | 注釋 |
|---|---|
| lazytab | 懶加載屬性 tableView |
| mk | //MARK: - |
| snpmake | SnapKit make 布局 |
| snpremake | SnapKit remake 布局 |
| initBtn | UIButton 初始化 |
| initCCell | UICollectionViewCell 初始化 |
| initImgV | UIImageView 初始化 |
| initLab | UILable 初始化 |
| initTCell | UITableViewCell 初始化 |
| initView | UIView 初始化 |
| ssself | guard let strongSelf = self |
OC
| 快捷鍵 | 注釋 |
|---|---|
| initBtn | UIButton 初始化 |
| initImgV | UIImageView 初始化 |
| initLab | UILable 初始化 |
| initCell | UITableViewCell 初始化 |
| initView | UIView 初始化 |
| initTextF | UITextField 初始化 |
| pna | @property (nonatomic, assign) |
| pns | @property (nonatomic, strong) |
| pnc | @property (nonatomic, copy) |
| td | //TODO: |
| mas_make | Masonry make 布局 |
| mas_remake | Masonry remake 布局 |
| mas_update | Masonry update 布局 |