swift中tableview的使用

前端之家收集整理的这篇文章主要介绍了swift中tableview的使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这里介绍下tableview的简单使用,大家可以自己在xcode的新建一个项目,然后把下面的代码粘贴到ViewController文件中,也可以把我给的项目导进去

在这里需要 提到cell的重用机制:当你给出的tableview比较低,一次不足以显示完你的所有cell,所以就需要向下拉,但是拉的时候,最上面的cell就消失了。为了提高效率,swift并没有删除生成cell,而是下面的cell是复用刚才小时的cell

这里还用到了delegate,其实代理的使用步骤都差不多,大家按照步骤走就行了。如果大家需要理解的更深入一些,可以选择代理,然后按住command键,最后点击一下,就可以到类里面去仔细看了



//
//  ViewController.swift
//  tableviewAndCellCode
//
//  Created by wangtuntun on 15/10/8.
//  Copyright (c) 2015年 wangtuntun. All rights reserved.
//

import UIKit

class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {
    //继承UITableViewDataSource还有UITableViewDelegate
    //定义tableview以及数据源
    var tableView1:UITableView!
    var tableSource=["1","2","3","4","5","k","u","uu","1","uu"];
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view,typically from a nib.
        println("hello");
        //初始化tableview
        tableView1=UITableView(frame: CGRect(x: 10,y: 10,width: 300,height: 300),style: UITableViewStyle.Grouped);
        tableView1.backgroundColor=UIColor.redColor();
        //这是使用监听必须要做的
        self.tableView1.delegate=self;
        self.tableView1.dataSource=self;
        //这里涉及到cell的重用机制。就是在显示的cell超过tableview时,马上显示的cell重用马上消失的cell
//        self.tableView1.registerClass(UITableViewCell.self,forCellReuseIdentifier: "cell");
        //将tableview添加代视图中
        self.view.addSubview(tableView1);
        
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
    
    // 返回行的个数
    func tableView(tableView: UITableView,numberOfRowsInSection section: Int) -> Int{
        return tableSource.count;
    }
    //返回列的个数
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1;
    }
    //返回一个cell
    func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
        
        let cellIdentifier="homePageIdentifier"
        var cell:UITableViewCell!=tableView.dequeueReusableCellWithIdentifier(cellIdentifier) as! UITableViewCell!
        if cell == nil {
            cell = UITableViewCell(style: .Default,reuseIdentifier: cellIdentifier)
            println(indexPath.row);
            
            
        }
        cell?.textLabel?.text=self.tableSource[indexPath.row];
        return cell!
        
//        let cell=tableView1.dequeueReusableCellWithIdentifier("cell",forIndexPath: indexPath) as! UITableViewCell;
//        cell.textLabel!.text=self.tableSource[indexPath.row];
//        cell.textLabel?.textColor=UIColor.blueColor();
//        cell.textLabel?.backgroundColor=UIColor.yellowColor();
//        return cell;
    }
    //返回cell的高度
    func tableView(tableView: UITableView,heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat{
        return 45.0
    }
    //当选中某一行的操作
    func tableView(tableView: UITableView,didSelectRowAtIndexPath indexPath: NSIndexPath){
        println("\(tableSource[indexPath.row])");
    }

    

}

猜你在找的Swift相关文章