Swift UITableView相关功能(二)

前端之家收集整理的这篇文章主要介绍了Swift UITableView相关功能(二)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我们上一节主要讲了简单创建一个表格填充一些数据

上一节地址:http://www.jb51.cc/article/p-cuujvvgb-bbq.html

这节我们对tableView每一行的细节做一些修饰

继续使用上节的代码代码下载方式见第一节末尾)

首先,我们给每一行设置一个副标题

创建一个数组存储副标题

    var _dataSubtitleArray:[String]!
        //准备数据
        _dataArray=[String]()
        _dataSubtitleArray=[String]()
        for i in 1...10
        {
            _dataArray.append("第\(i)行")
            _dataSubtitleArray.append("副标题\(i)")
        }

        _tableView.dataSource=self


其实很简单只需要修改一个方法

    //设置每一行的内容
    func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        var cellid="cellid"
        
        var cell=tableView.dequeueReusableCellWithIdentifier(cellid) as? UITableViewCell
        
        if cell==nil
        {
            //此处参数style 需要设置为 Subtitle 才可以展示出来副标题
            cell=UITableViewCell(style: UITableViewCellStyle.Subtitle,reuseIdentifier: cellid)
            
        }
        //设置每行现实标题
        cell!.textLabel?.text=_dataArray![indexPath.row]
        //设置每行的副标题
        cell!.detailTextLabel?.text=_dataSubtitleArray[indexPath.row]
        return cell!
    }


执行效果如下:

我们再尝试设置一下每行的图片

还是修改刚才的方法

添加一样代码

        //设置图片
        cell!.imageView?.image=UIImage(named: "tableimage");

执行效果如下
设置tableView右侧提示标签的样式

只需要在刚才的方法添加一行代码

        //设置右侧提示按钮
        cell!.accessoryType=UITableViewCellAccessoryType.DetailDisclosureButton


看下效果

本节我们先讲到这里

下节地址:http://blog.csdn.net/lwjok2007/article/details/49179645

本节源代码我们会上传到qq群空间,欢迎下载

源码名称:TestTableViewSwift2.zip

苹果开发群2 :492222303 欢迎加入 欢迎讨论问题

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

猜你在找的Swift相关文章