错误:
Tweak.x:16:3: error: receiver type 'MMTableView' for instance message is a forward declaration
[self addSubView:view];
^~~~
Tweak.x:26:8: note: forward declaration of class here
@class MMTableView;
解决:
1、新建文件
MMTableView.h
2、里面添加
@interface MMTableView : UITableView
@end
3、Tweak.x中导入
#import "MMTableView.h"
|||||success|||||
网友评论