これは私のコードです:
#import <UIKit/UIKit.h>
@interface CustomCellArticle: UITableViewCell
@property(nonatomic,retain) IBOutlet UILabel *name;
@end
初めてこのエラーを受け取りました:
Missing @end
Expected identifier or '('
コードの最初にあり、それを修正するために最初に@endを追加する必要がありました。コードは次のようになりました。
#import <UIKit/UIKit.h>
@end //here the seconde error
@interface CustomCellArticle: UITableViewCell
@property(nonatomic,retain) IBOutlet UILabel *name;
@end
追加すると、新しいエラーが発生しました。
@end must appear in an Objective-C context
何が起こったのか正確にはわかりません、助けてください!別のプロジェクトで同じクラスを使用しましたが、正常に機能します。