ヘッダーのカスタム ビューを作成しようとしていますUITableView
が、残念ながら例外が発生します。
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UIViewController _loadViewFromNibNamed:bundle:] loaded the "ImagesView" nib but the view outlet was not set.'
まず、HomeViewController で tableView を作成し、カスタム ビューを設計した xib ファイルを使用して ImagesViewController を作成しました。
そして最後に、TableView のヘッダーとして ImagesView を割り当てようとします。
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
ImagesViewController *imagesView = [[ImagesViewController alloc] init];
tableView.tableHeaderView = imagesView.view;
}
私は何を間違っていますか?私はiOS開発の初心者で、自分でそれを理解しています。
ご協力いただきありがとうございます!