Tweak 中使用self报错的问题
2020-07-13 本文已影响0人
CYC666
错误:
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|||||