这是我的代码:
#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
不知道具体是怎么回事,求大神帮忙!我在另一个项目中使用了相同的类,它工作正常!