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

swift:UItableView

时间:2015-12-29 12:48:27      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:

import UIKit

class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource{

    override func viewDidLoad() {
        super.viewDidLoad()
        
        let 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()
       
         // Do any additional setup after loading the view, typically from a nib.
    }
    //行数
   func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
    {
      return 5
    }
    //cell
     func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{
       let cell = UITableViewCell()
        cell.textLabel?.text = "少停"
        cell.detailTextLabel?.text = "gaga"
        if indexPath.row%2 == 0{
          cell.imageView?.image = UIImage(named: "image1")
        }else{
          cell.imageView?.image = UIImage(named: "image2")
        }
    return cell
    }

 技术分享

swift:UItableView

标签:

原文地址:http://www.cnblogs.com/shaoting/p/5085178.html

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