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.
在 Objective-C 中,您可以使用不同的属性标记方法,例如 NS_DEPRECATED、NS_RETURNS_NOT_RETAINED 等。
是否可以标记具有多个属性的方法?
当然。把它们都排成一排。
- (id)foo NS_RETURNS_NOT_RETAINED NS_DEPRECATED(...);
(请注意,NS_DEPRECATED 并不是真的供您使用。它需要 iOS 或 Mac 版本范围的参数,目的是表明操作系统版本中的可用性。)