LoginSignup
25
22

More than 5 years have passed since last update.

【swift】UITableViewの空行のseparatorを消す

Posted at

自分用メモ。
↓の記事を参考にしました。
http://qiita.com/wmoai/items/cc989a1a2ac882136148

swift
var v:UIView = UIView(frame: CGRectZero)
v.backgroundColor = UIColor.clearColor()
tableView.tableFooterView = v
tableView.tableHeaderView = v

これだけです。

25
22
1

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
25
22