https://github.com/YouXianMing
摘要: UITableView的一些常用操作--------------------------------------------------------------------------------------------// 隐藏TableView中cell之间的分割线tableView.separatorStyle = UITableViewCellSeparatorStyleNone;// 隔行显示不同的颜色if (indexPath.row % 2 == 1){ cell.backgroundColor = ......;}else{ cell.backgroundColor = ... 阅读全文
posted @ 2014-03-27 15:23 YouXianMing 阅读(1069) 评论(0) 推荐(0) 编辑