次の手順を実行します。
1)xibでtableViewControllerを作成します。2) 以下のスクリーンショットのように、他の 2 つの xib のみを作成します。
3) オブジェクト ウィンドウから uitableView をドラッグします。
4)そのクラスを、最初に作成したTableViewControllerのクラスに変更します。
5) ファイル所有者のビュー デリゲートを tableView に接続します。
6) コードを ------ として使用する
- (void)viewDidLoad
{
MYViewController *FirstTableController=[[MYViewController alloc] initWithNibName:@"MYViewController" bundle:nil];
MYViewController *secondTableController=[[MYViewController alloc] initWithNibName:@"MYSecondController" bundle:nil];
MYViewController *thirdTableController=[[MYViewController alloc] initWithNibName:@"MYThird" bundle:nil];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
または
#import <UIKit/UIKit.h>
@interface MYViewController : UITableViewController
{
IBOutlet UITableView *f_table,*s_table,*t_table; //outlets for different tableViews in xib.
}
@end
- (void)viewDidLoad
{
[super viewDidLoad];
self.view=f_table; // when working with first table.
self.view=s_table; //working with second table.
self.view=t_table; //working with third table.
}