We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我日常开发中有个需求就是做懒加载,但是属性的名称通常是不一样的,有没有什么办法能做到支持我在缩写中加入我想要的属性名称,然后能生成懒加载的代码。比如:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我日常开发中有个需求就是做懒加载,但是属性的名称通常是不一样的,有没有什么办法能做到支持我在缩写中加入我想要的属性名称,然后能生成懒加载的代码。比如:
if (!_avatar) {
_avatar = [[UIImageView alloc] init]
}
return _avatar;
}
我敲出来iv+avatar 然后自动生成上面这样的代码。
现在有办法支持在map里面添加这种map的吗?
The text was updated successfully, but these errors were encountered: