Skip to content

Instantly share code, notes, and snippets.

View wyanassert's full-sized avatar
🎯
Focusing

wyanassert wyanassert

🎯
Focusing
View GitHub Profile
@wyanassert
wyanassert / Snippets Shortcut.m
Created August 14, 2019 12:55 — forked from XcqRomance/Snippets Shortcut.m
开发中Xcode常用的快捷代码块设置
// mystrong
@property(nonatomic, strong)<#propetyclass#> *<#propertyname#>;
// mycopy
@property(nonatomic, copy)<#propetyclass#> *<#propertyname#>;
// myassign
@property(nonatomic, assign)<#propetyclass#> *<#propertyname#>;
// myweak
@property(nonatomic, weak)id<<#protocalname#>> <#propertyname#>;
// mylazyload