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.
有没有办法让那些回来?我正在关注一些视频教程,其中将文本字段拖到 h 文件中会在 m 文件中创建一个属性和一个 @synthesize。在 xcode 4.5.2 中,未创建 @synthesize。任何的想法?
谢谢
在 XCode 4.5.2 中它不是强制性的,但您可以创建它们。如果没有@synthesize,这意味着@synthesize myProp = _myProp;
@synthesize
@synthesize myProp = _myProp;
Xcode 4.5 包含默认合成的较新版本的 clang。@synthesize不再需要该指令。