1

我有使用 appCode。

当我在 @implementation 文件中编写方法时,我想通过 appCode 的某些功能将方法自动声明到 heder 文件中。

例如)我在@implementation 文件中编写了一个方法。

@implementation myClass
- (void)testMethod{
}
@end

自动将方法声明到@interface 文件中。

@interface myClass
- (void)testMethod;  <== automatically insert.
@end

如何通过appcode的功能自动将方法声明到头文件中?

4

1 回答 1

7

在 testMethod 名称处使用插入光标,调用 Opt+Enter 并从列表中选择“Declare method in interface”。

于 2012-04-17T08:44:03.263 回答