Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论如何让xcode(4.2)自动将合成和空方法体添加到实现文件(对于接口中定义的属性和方法)?
4.2 中没有内置解决方案。您可以尝试创建一个 shell 脚本,在您的标头中搜索属性,然后在正确的位置添加 @synthesize 行。
为什么不使用最新的(4.4)版本呢?4.4可以自动为你合成ivars。您所要做的就是声明一个@property,Xcode 会处理剩下的事情。