EasyCode-Xcode
EasyCode-Xcode copied to clipboard
"legal" Xcode Plugin for inserting code in super duper fast lazy way.
在swift工程里,输入btn,按快捷键,但是没有替换成代码块。请问怎么解决,还是EasyCode的问题 btn let btn = UIButton.init() btn.backgroundColor = .blue btn.addTarget(self, action: #selector(dianJiBtn), for: .touchUpInside) view.addSubview(btn)
xcode9
这个插件支持xcode9吗?
无论我从github上下载两个target都运行重启了xcode还是从AppStore上下载的,在Editor中都没有EC,请指教?macOS 是12的 + xcode8
It did not work with Swift. So I checked the code and found that func--readMappingForSwift may not be right. After fixing it is working.
Hey, Thx for Creating Awesome Plugin. I followed the instruction in README.md file . Plugin is working for Obj-C code but not working for Swift code. I also Installed Plugin...
我在Appstore上下载的easycode 界面能出来,但是在Xcode的Edit却是空的,不能使用。
It would be beyond awesome if you would also natively support C++. This sounds exactly like the thing we need for C++ Game Development on Xcode :)
我日常开发中有个需求就是做懒加载,但是属性的名称通常是不一样的,有没有什么办法能做到支持我在缩写中加入我想要的属性名称,然后能生成懒加载的代码。比如: - (UIImageView *)avatar { if (!_avatar) { _avatar = [[UIImageView alloc] init] } return _avatar; } 我敲出来iv+avatar 然后自动生成上面这样的代码。 现在有办法支持在map里面添加这种map的吗?