原:去掉UITableView的分割线

原:去掉UITableView的分割线

创建:2012.03.15
如果是UITableViewStylePlain类型的UIT ableView,则可以直接调用
tableview.separatorStyle = UITableViewCellSeparatorStyleN one;
tableview.separatorColor = [UIColor clearColor];
如果是UITableViewStyleGrouped类型, 则除了上面的调用外, 还需要把cell的contentView的color设定为c learColor。可能还需要设定opaque为透明。
+++++

你可能感兴趣的:(原:去掉UITableView的分割线)