码迷,mamicode.com
首页 > 编程语言 > 详细

swift 创建tableView 并实现协议

时间:2015-07-10 11:26:29      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:ios   swift   uitableview   


import UIKit

class ViewController2: UIViewController,UITableViewDelegate,UITableViewDataSource{
    
    override func viewDidLoad() {
        super.viewDidLoad()
        self.view.backgroundColor=UIColor.orangeColor()
        var myTableView = UITableView(frame: CGRectMake(0, 0, UIScreen .mainScreen().bounds.size.width, UIScreen.mainScreen().bounds.size.height), style: UITableViewStyle.Plain)
        self.view.addSubview(myTableView)
        myTableView.delegate = self
        myTableView.dataSource = self
        myTableView.backgroundColor = UIColor.whiteColor()
    }
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 10
    }
    func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
        return 60
    }
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        var cell = UITableViewCell()
        cell.textLabel?.text = "MyFirstSwift"
        cell.detailTextLabel?.text = "gaga"
        if indexPath.row%2 == 0{
            cell.imageView?.image = UIImage(named: "image1")
        }else{
            cell.imageView?.image = UIImage(named: "image2")
        }
        return cell
    }
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }
}


版权声明:本文为博主原创文章,未经博主允许不得转载。

swift 创建tableView 并实现协议

标签:ios   swift   uitableview   

原文地址:http://blog.csdn.net/darongzi1314/article/details/46827465

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!