14
14

More than 5 years have passed since last update.

UITableViewの空セルのseparatorを消す

Posted at

元情報

test.m
UITableView *table = [[UITableView alloc] initWithFrame:frame];

UIView *v = [[UIView alloc] initWithFrame:CGRectZero];
v.backgroundColor = [UIColor clearColor];
[table setTableHeaderView:v];
[table setTableFooterView:v];
14
14
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
14
14