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 中创建私有方法时,我应该使用什么? 1)众所周知的类别技术。 2) @private 指令。 (我正在做iOS开发)。
@private 用于 ivars,而不是用于方法。只需在 .m 文件的顶部创建一个类扩展并将私有方法放在那里。它看起来像
@interface MyClass () // note the empty parens - (void)onePrivateMethod; - (void)twoPrivateMethod; @end @implementation MyClass // implement everything @end
应该乘以在文本框中输入的数字