Swift - 玩转UITableView

@IBOutlet weak var tableView: UITableView!

设置表格视图的代理和数据源

tableView?.dataSource = self
tableView?.delegate = self
import UIKit

class Menu : NSObject {
    
    var icon:NSString = ""
    var name:NSString = ""
    var intro:NSString = ""
    
    init(icon:NSString,name:NSString,intro:NSString) {
        self.icon = icon
        self.name = name
        self.intro = intro
    }
    
}


class TranscriptViewController : UIViewController {

    var infos = [Menu]()
    
    @IBOutlet weak var tableView: UITableView!
    override func viewDidLoad() {
        super.viewDidLoad()
        
        let menu1:Menu = Menu(icon: "menu_icons_1_01.png", name: "个人成绩单", intro: "总分-个人成绩单")
        let menu2:Menu = Menu(icon: "menu_icons_1_02.png", name: "成绩组成", intro: "个人成绩组成")
        let menu3:Menu = Menu(icon: "menu_icons_1_03.png", name: "学业评价", intro: "个人学业评价")
        let menu4:Menu = Menu(icon: "menu_icons_1_04.png", name: "学习水平分布分析", intro: "学习水平分布分析")
        let menu5:Menu = Menu(icon: "menu_icons_1_05.png", name: "偏科分析", intro: "偏科分析")
        let menu6:Menu = Menu(icon: "menu_icons_1_06.png", name: "综合报告", intro: "综合报告")
        
        infos.append(menu1)
        infos.append(menu2)
        infos.append(menu3)
        infos.append(menu4)
        infos.append(menu5)
        infos.append(menu6)
        
        tableView?.dataSource = self
        tableView?.delegate = self

    }

}


extension TranscriptViewController : UITableViewDataSource,UITableViewDelegate {
    
    // MARK: - UITableViewDataSource
    
    // 返回组数
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }
    
    // 返回行数
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return infos.count
    }
    
    // 设置每一行单元格内容
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        
        // 设置单元格重用标识
        let identifier = "Reusecell"
        
        // 首先从队列中去取
        var cell:UITableViewCell? = tableView.dequeueReusableCellWithIdentifier(identifier) as UITableViewCell?
        
        // 如果没有从队列中获取到,那么重新创建一个
        if cell == nil {
            cell = UITableViewCell(style: .Subtitle, reuseIdentifier: identifier)
        }
        
        // 从数组取出一个对象
        let menu:Menu = infos[indexPath.row]
        
        // 设置单元格内容
        cell!.imageView?.image = UIImage(named: menu.icon as String)
        cell!.textLabel!.text = menu.name as String
        cell!.detailTextLabel!.text = menu.intro as String
        cell?.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator;
        
        // 返回重用单元格
        return cell!
    }
    
    // MARK: - UITableViewDelegate
    // 表格点击事件
    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        
        let name = infos[indexPath.row].name as String
        print(name)

    }
    
    // 每组的头部高度
    func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        return 0.1
    }
    
    // 每组的底部高度
    func tableView(tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
        return 10
    }
    
    // 返回行高
    func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
        return 46
    }
    
    
}

自定义TableViewCell

import UIKit

class MenuCell : UITableViewCell {
    
    @IBOutlet weak var icon: UIImageView!
    @IBOutlet weak var name: UILabel!
    @IBOutlet weak var intro: UILabel!
    
    required init(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)!
    }
    
    override init(style: UITableViewCellStyle, reuseIdentifier: String!) {
        super.init(style: style, reuseIdentifier: reuseIdentifier)
    }
    
    override func awakeFromNib() {
        super.awakeFromNib()
    }
    
    override func setSelected(selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)
    }
    
}
tableView?.dataSource = self
 tableView?.delegate = self
        
tableView.registerNib(UINib(nibName: "MenuCell", bundle: nil), forCellReuseIdentifier: "Reusecell")
 // 设置每一行单元格内容
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

        let menu:Menu = infos[indexPath.row]
        
        let cell = tableView.dequeueReusableCellWithIdentifier("Reusecell", forIndexPath: indexPath) as! MenuCell
        
        cell.icon.image = UIImage(named: menu.icon as String)
        cell.name.text = menu.name as String
        cell.intro.text = menu.intro as String
        cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator

        return cell
    }

你可能感兴趣的:(Swift - 玩转UITableView)