LoginSignup
1
2

More than 5 years have passed since last update.

Missing context for method declaration

Last updated at Posted at 2013-08-23

タイトルのエラーが出たので備忘録

以下を参考にする事でかいけつ
http://onno.jp/dev/2012/08/ios-missing-context-for-method-declaration-missing-end.html

原因は

@implementation hoge

#import huga.h
...
@end

のimportの位置が悪い

#import huga.h
@implementation hoge
...
@end

でかいけつ

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2