Swift开发教程--如何去掉UITableViewController黑色线条

直接上代码:

//去掉背景线条显示

self.tableView.separatorStyle = UITableViewCellSeparatorStyle.SingleLine;

self.tableView.separatorColor = UIColor.clearColor();

你可能感兴趣的:(IOS)