LoginSignup
3
3

More than 5 years have passed since last update.

UITableView.tableHeaderView の高さ変更

Last updated at Posted at 2014-05-12

一度 nil を代入して上げないとなぜか反映されない。
うーん、そういうものなんでしょうか・・・。

UIView *tableHeaderView = self.tableView.tableHeaderView;
CGRect newFrame = tableHeaderView.frame;
newFrame.Size.Height = newHeight;
tableHeaderView.frame = newFrame;
self.tableView.tableHeaderView = nil;
self.tableView.tableHeaderView = tableHeaderView;
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3