@class
.h文件
#import <UIKit/UIKit.h>
//#import "News.h"
//类的前置声明
/** 告诉编译器,暂时把这个字符串当做一个类型来使用,以后会定义这个类型的*/
@class News;
@interface NewsCell : UITableViewCell
@property (nonatomic, strong)News *model;
@end
Í
Í
Í
Í
.m文件
#import "NewsCell.h"
#import "News.h"
@interface NewsCell ()
//图片视图