我有使用 appCode。
当我在 @implementation 文件中编写方法时,我想通过 appCode 的某些功能将方法自动声明到 heder 文件中。
例如)我在@implementation 文件中编写了一个方法。
@implementation myClass
- (void)testMethod{
}
@end
自动将方法声明到@interface 文件中。
@interface myClass
- (void)testMethod; <== automatically insert.
@end
如何通过appcode的功能自动将方法声明到头文件中?