UITableViewCell单元格视图设计

时间:2018-06-16 23:32:21

标签: swift

如何获取此视图帮助 尽管搜索,我找不到大多数消息来源。有什么办法可以帮助我吗? 我希望这个视图= https://i.stack.imgur.com/nQ0mg.png

我试试这个

 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "CustomCell") as! CustomTableViewCell
    cell.nameLabel.text = JsonAlbum[indexPath.row].title
    cell.backgroundColor = cellColorForIndex(indexPath: indexPath as NSIndexPath)
    return cell
}
 func cellColorForIndex(indexPath:NSIndexPath) -> UIColor{


        let row = CGFloat(indexPath.row)
        let section = CGFloat(indexPath.section)
        let saturation  = 1.0 - row / CGFloat(self.JsonAlbum.count)
        let hue =  section / CGFloat(self.JsonAlbum.count)

        return UIColor(hue: hue, saturation: saturation, brightness: 1.0, alpha: 1.0)
    }

此代码颜色:https://i.stack.imgur.com/wX5UJ.png

0 个答案:

没有答案