Skip to content

Instantly share code, notes, and snippets.

@Lewuathe
Created December 15, 2012 13:06
Show Gist options
  • Select an option

  • Save Lewuathe/4294801 to your computer and use it in GitHub Desktop.

Select an option

Save Lewuathe/4294801 to your computer and use it in GitHub Desktop.
@interface内でのメソッドの宣言 ref: http://qiita.com/items/dd7a5e8f720d63fea18d
@interface MyClass() : NSObject{
}
- (void)myMethod;
@end
@interface MyClass(){
}
- (void)myMethod; // ←これ
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment