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 実装の通常のメソッドがあります。
これは私のインターフェースビルダーです:
前もって感謝します