0

外観を更新できるように、UITableView で既存のヘッダー ビューを取得したいと考えています。セルの代わりにヘッダー ビューを返す visibleCells に似たメソッドを見つけることができませんでした。これは可能ですか、または作成中にこれらのビューを保存する必要がありますか?

4

2 に答える 2

1

それらを NSMutableArray に格納する必要があります。サンプルコードは次のとおりです。

@interface ViewController : UITableViewController (UITableViewDataSource, UITableViewDelegate)
@property (nonatomic, strong) NSMutableArray *sectionHeaderViews;
@end


@implementation ViewController

- (void)viewDidLoad {
  self.sectionHeaderViews = [NSMutableArray array];
  NSInteger numOfSections = [self numberOfSectionsInTableView:self.tableView];
  for(int i=0; i<numOfSections)
  {
     CustomHeaderView *headerView = [[CustomHeaderView alloc] init];

     // customize headerView here
     ...

     [self.sectionHeaderViews addObject:headerView];
  }
}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
  return [self.sectionHeaderViews objectAtIndex:section];
}

- (void)updateViewForSection:(NSInteger)section {
  CustomHeaderView *headerView = [self.sectionHeaderViews objectAtIndex:section];

  // update headerView here
  ...

  // reload section
  [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:section] withRowAnimation: UITableViewRowAnimationAutomatic];
}

@end

幸運を!

于 2013-04-03T15:47:57.330 に答える
0
[tableView headerViewForSection:sectionNum];
于 2013-04-03T15:38:34.353 に答える