Question

I have using appCode.

I want to automatically be declared a method into heder file by appCode's some feature, when I write a method in @implementation file.

ex) I write a method in @implementation file.

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

automatically declare a method into @interface file.

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

How to automatically declare method into header file by appcode's feature?

Was it helpful?

Solution

With caret cursor at testMethod name invoke Opt+Enter and choose "Declare method in interface" from the list.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top