如何获取此视图帮助 尽管搜索,我找不到大多数消息来源。有什么办法可以帮助我吗? 我希望这个视图= 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)
}