我在连接 TableView 时遇到问题(我认为这是我的错误,也许是另一个错误),我有这个错误:
-[NSObject tableView:numberOfRowsInSection:]: unrecognized selector sent to instance 0x796aaa0
这是连接的问题,不是吗?
这是我的通知.h:
#import <UIKit/UIKit.h>
@interface Notice : UIViewController <UITableViewDataSource, UITableViewDelegate>
{
UITableView *mainTableView;
NSMutableArray *contentsList;
}
@property (nonatomic, retain) NSMutableArray *contentsList;
@property (nonatomic, retain) IBOutlet UITableView *mainTableView;
@end
在notice.m 中,我有UITableView 实现的常用方法。
这是我的界面生成器:
先感谢您