您的位置:首页 > 移动开发

iOS学习- 12 绑定数组数据到Table View - Todo App

2016-06-02 23:00 316 查看
 1.) 修改 UITableViewDatasource 两个实现方法:

//

//  ViewController.swift

//  Todo

//

//  Created by Ricky Choi on 16/6/1.

//  Copyright © 2016年 worm. All rights reserved.

//

import UIKit

var todos: [TodoModel] = []

func dateFromString(dateStr: String) -> NSDate? {

    let dateFormatter = NSDateFormatter()

    dateFormatter.dateFormat = "yyy-MM-dd"

    let date = dateFormatter.dateFromString(dateStr)

    return date

}

class ViewController: UIViewController, UITableViewDataSource {

    

    @IBOutlet weak var tableView: UITableView!

    

    override func viewDidLoad() {

        super.viewDidLoad()

        // Do any additional setup after loading the view, typically from a nib.

        todos = [TodoModel(id: "1", image: "child-selected", title: "1. 去游乐场", date: dateFromString("2014-11-2")!),

        TodoModel(id: "2", image: "shopping-cart-selected", title: "2. ", date: dateFromString("2014-10-28")!),

        TodoModel(id: "3", image: "phone-selected", title: "3. 打电话", date: dateFromString("2014-10-30")!),

        TodoModel(id: "4", image: "travel-selected", title: "4. Travel to Europe", date: dateFromString("2014-10-31")!),

        ]

    }

    override func didReceiveMemoryWarning() {

        super.didReceiveMemoryWarning()

        // Dispose of any resources that can be recreated.

    }

    //Implement UITableviewDataSource

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        //return 50

        return todos.count

    }


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

        let cell = self.tableView.dequeueReusableCellWithIdentifier("todoCell")! as UITableViewCell

        
        var todo = todos[indexPath.row] as TodoModel

        

        //get control from tag

        var image = cell.viewWithTag(101) as! UIImageView

        var title = cell.viewWithTag(102) as! UILabel

        var date = cell.viewWithTag(103) as! UILabel

        

        image.image = UIImage(named: todo.image)

        title.text = todo.title

        

        let locale = NSLocale.currentLocale()

        let dateFormat = NSDateFormatter.dateFormatFromTemplate("yyyy-MM-dd", options: 0, locale: locale)

        let dateFormatter = NSDateFormatter()

        dateFormatter.dateFormat = dateFormat

        date.text = dateFormatter.stringFromDate(todo.date)

        

    

        return cell

    }


}

screen:
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  ios