即時通訊設置我的部分標題在uitableview中的問題,它可能是一個非常簡單的東西,我只是不能解決它。在UITableView部分標題的問題
,而不是爲不同部分顯示不同的頁眉它顯示了每個部分
幫助相同的標題我請:)
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
WorldCupAppDelegate *appDelegate = [UIApplication sharedApplication].delegate;
return [appDelegate.matchFixtures count];
}
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
WorldCupAppDelegate *appDelegate = [UIApplication sharedApplication].delegate;
Fixtures *fixtures = [appDelegate.matchFixtures objectAtIndex:section];
return fixtures.matchDate;
}
您是否檢查過appDelegate.matchFixtures count是否有通過NSLog打印的值?相同的fixtures.matchDate? – 2010-04-29 13:16:22
每個matchFixture都有不同的matchDate嗎? – DyingCactus 2010-04-29 13:24:42