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

swift纯代码 demo

时间:2015-06-19 12:06:23      阅读:444      评论:0      收藏:0      [点我收藏+]

标签:

class serviceHallViewController: UIViewController  ,UITableViewDelegate ,UITableViewDataSource {
    
    var tableView :UITableView?
    
    override func viewDidLoad() {
    super.viewDidLoad()
    //self.title = "MySwift"
    setupViews()
    
    // Do any additional setup after loading the view.
    }
    func setupViews()
    {
        //初始化tableview并设置frame
        self.tableView = UITableView(frame:self.view!.frame)
        //设置tableview的代理对象
        self.tableView!.delegate = self
        self.tableView!.dataSource = self
        self.tableView!.registerClass(UITableViewCell.self, forCellReuseIdentifier:"cell")
        //将tableview添加到view试图上
        self.view?.addSubview(self.tableView!)
    }
    
    func tableView(tableView:UITableView, numberOfRowsInSection section:Int) -> Int
    {
        return 20;
    }
    
    // Row display. Implementers should *always* try to reuse cells by setting each cell‘s reuseIdentifier and querying for available reusable cells with dequeueReusableCellWithIdentifier:
    // Cell gets various attributes set automatically based on table (separators) and data source (accessory views, editing controls)
    
    func tableView(tableView:UITableView, cellForRowAtIndexPath indexPath:NSIndexPath) -> UITableViewCell
    {
        let cell = tableView .dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath)as! UITableViewCell
        cell.textLabel!.text = String(format:"%i", indexPath.row+1)
        return cell
    }

swift纯代码 demo

标签:

原文地址:http://my.oschina.net/227/blog/468648

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