gpt4 book ai didi

iphone - Objective-C 何时在@interface 中声明哪些方法

转载 作者:可可西里 更新时间:2023-11-01 03:28:15 25 4
gpt4 key购买 nike

什么时候应该在类的@interface 部分声明什么方法?据我所知,描述你的类做什么的方法应该在 @interface 部分声明,但不应该声明其他“帮助”方法。我这边的理解正确吗?

最佳答案

一种方法是在.h 文件中声明实例方法。并且,使用 Category.m 中声明 private 方法

例如,在MyOwnClass.h 文件中。

@interface MyOwnClass

- (void)aInstanceMethod;

@end

并且,在您的 MyOwnClass.m 文件中,在 @implementation block 之前,

@interface MyOwnClass (MyPrivateMethods)

- (void)aPrivateMethod;

@end

关于iphone - Objective-C 何时在@interface 中声明哪些方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6547498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com