最新消息:关注【太平洋学习网】微信公众号,可以获取全套资料,【全套Java基础27天】【JavaEE就业视频4个月】【Android就业视频4个月】

swift3.0 UITableView 简单使用教程tutorials

IOS admin 浏览 评论

ios swift3.0显示表格需要使用UITableView对象,其中UITableViewCell是表格行的对象,下面一个简单的教程tutorials来学习下swift uitableview的使用,如下。

import UIKit

class ContactTableViewController: UITableViewController {

    var datasource = NSMutableArray.init()
    override func viewDidLoad() {
        super.viewDidLoad()
        //datasource = ["apple","orange","strawberry","banana","watermelon"];
        datasource.add("apple")
        datasource.add("orange")
        datasource.add("strawberry")
        datasource.add("banana")
        datasource.add("watermelon")        
    }

    // MARK: 以下三个方法显示UITableView数据

    override func numberOfSections(in tableView: UITableView) -> Int {

        return 1
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        return datasource.count
    }
    
    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = UITableViewCell.init()
        cell.textLabel?.text = String(describing: datasource[indexPath.row])
        return cell
    }
    
    //选择行弹出提示框
    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        let msg = datasource[indexPath.row] as? String
        let alert = UIAlertController.init(title: "提示", message:msg , preferredStyle: UIAlertControllerStyle.alert)
        let action = UIAlertAction.init(title: "好的", style: UIAlertActionStyle.cancel, handler: nil)
        alert.addAction(action)
        self.present(alert, animated: true, completion: nil)
    }
    
    //以下三个为滑动删除功能
    override func tableView(_ tableView: UITableView, titleForDeleteConfirmationButtonForRowAt indexPath: IndexPath) -> String? {
        
        return "删除";
    }

    //删除样式
    override func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle {
        
        return UITableViewCellEditingStyle.delete
    }
    
    override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
        //编辑样式为删除UITableViewCellEditingStyle.delete
        if editingStyle == .delete {
            self.datasource .removeObject(at: indexPath.row)
            self.tableView.reloadData()
        }
    }

    
}

UITableViewCell做了一个滑动删除的效果,如图所示:

QQ20170803-092850.png

来源网站:太平洋学习网,转载请注明出处:http://www.tpyyes.com/a/object-c_ios/179.html
"文章很值,打赏犒劳作者一下"
微信号: Javaweb_engineer

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

与本文相关的文章

发表我的评论
取消评论

表情

您的回复是我们的动力!

  • 昵称 (必填)

网友最新评论