外部デリゲートコントローラーを備えたテーブルビューがあります。コンテンツ テーブル ビュー配列は十分に取り込まれnumberOfSectionsInTableView:
て
いて、呼び出されていますが-tableView: numberOfRowsInSection:
、呼び出されて
い-tableView: cellForRowAtIndexPath:
ません。
発行されたテーブル ビューは、次のように設定されます。
CompeticionViewController.h
....
@property (retain, nonatomic) IBOutlet UITableView *calendarioTable;
@property (strong, nonatomic) calendarioViewController *calendarioController;
....
calendarioTable = [[UITableView alloc] init];
calendarioController = [[calendarioViewController alloc] init];
[calendarioTable setDelegate:calendarioController];
[calendarioTable setDataSource:calendarioController];
calendarioController.calendarioArray = [[NSMutableArray alloc] init];
[calendarioController.calendarioArray addObjectsFromArray: self.calendarioarray];
[calendarioTable reloadData];
編集:
calendarioViewController.m
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [calendarioArray count];
}
どうもありがとう