1. @class CLASS ;必须加分号,且卸载@interface之前
示例代码如下:
#import <UIKit/UIKit.h>
@class WZProduct; //注意必须加分号,因为是告诉.h文件,WZProduct是一个类,类似声明变量,是一句完整的话
@interface WZProtoCell : UITableViewCell
@property (strong,nonatomic) WZProduct *model;
@end
2.所有的#define ,#import 语句不得加分号,因为是导入XXX.h头文件,导入的XXX.h文件需要和之后的代码进行无缝拼接的,用了;分号表示语句结束。