Swift-UITableViewCell:设置表格的accessoryType属性

前端之家收集整理的这篇文章主要介绍了Swift-UITableViewCell:设置表格的accessoryType属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

> UPDATE 2015/12/24: Updated for Xcode 7.2 and Swift 2

UITableViewCell的---accessoryType属性

设置accessoryType属性

//没有任何样式
cell.accessoryType = UITableViewCellAccessoryType.None

//一个小箭头(这是APP上常见的形式)
cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator

//一个Info图标
cell.accessoryType = UITableViewCellAccessoryType.DetailButton



//一个Info图标+一个小箭头
cell.accessoryType = UITableViewCellAccessoryType.DetailDisclosureButton;

//一个对勾
cell.accessoryType = UITableViewCellAccessoryType.Checkmark

代码示例:

func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

        let cell:UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Subtitle,reuseIdentifier:"mycell");
        
        
        cell.textLabel!.text = dataScoureArr[indexPath.row]
        cell.textLabel?.backgroundColor = UIColor.lightGrayColor()
        cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator
        return cell

    }
原文链接:https://www.f2er.com/swift/325059.html

猜你在找的Swift相关文章