//
//  OneViewController.swift
//  tab
//
//  Created by su on 15/12/7.
//  Copyright © 2015年 tian. All rights reserved.
//

import UIKit

let ID = "cell"

class OneViewController: UIViewController,UITableViewDelegate, UITableViewDataSource {

//    let myTabelView:UITableView!
   
   
    override func viewDidLoad() {
        super.viewDidLoad()
       
        self.view.backgroundColor = UIColor.blueColor()
        self.navigationItem.title = "aa"
        //创建tableview
        let tabelView = UITableView(frame: view.bounds, style: UITableViewStyle.Plain)
       
        //注册cell
        tabelView.registerClass(UITableViewCell.self, forCellReuseIdentifier: ID)
        //下边这种方法也是可以的
//        tabelView.registerClass(UITableViewCell.classForCoder(), forCellReuseIdentifier: ID)
        //设置代理和数据源
        tabelView.delegate = self
        tabelView.dataSource = self
        tabelView.tableFooterView = UIView()
       
        //加到view上
        self.view.addSubview(tabelView)
       
    }
   
     func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 10
    }
   
     func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier(ID, forIndexPath: indexPath)
        cell.textLabel!.text = "假数据"
        return cell
    }

override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }

/*
    // MARK: - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
    override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
        // Get the new view controller using segue.destinationViewController.
        // Pass the selected object to the new view controller.
    }
    */

}

最新文章

  1. Sql Server中不常用的表运算符之APPLY(2)
  2. UE4动作流程总结
  3. java出错
  4. php disk_free_space与disk_total_space实例介绍
  5. Contest20140710 loop bellman-ford求负环&&0/1分数规划
  6. Linux日志文件系统(EXT4、XFS、JFS)及性能分析
  7. Nginx 反向代理配置实例(转)
  8. [LeetCode] Reaching Points 到达指定点
  9. Linux常用内核参数
  10. MySQL 并行复制演进及 MySQL 8.0 中基于 WriteSet 的优化
  11. 成功激活Win8.1专业版方法
  12. jquery-- json字符串没有自动包装为 json对象
  13. 雷林鹏分享:C# 常量
  14. vue中文章的折叠于显示全部
  15. "text"和new String("text")的区别
  16. 理解RESTful 架构
  17. [转] Linux 硬件设备查看命令
  18. java AES 加密解密工具(Advanced Encryption Standard)发现明文相同但每次重启服务后密文就会不同于是有了改进
  19. 列出自己常用的jdk中的数据结构
  20. awk使用实例一则

热门文章

  1. C++ 构造函数_拷贝构造函数
  2. eclipse调试时增加jvm参数
  3. Eclipse中配置Maven build打包
  4. ES6系列_12之map数据结构
  5. [译]2D空间中使用四叉树Quadtree进行碰撞检测优化
  6. 最简单的WebService
  7. 迷你MVVM框架 avalonjs 学习教程9、类名操作
  8. Linux CentOS修改网卡IP/网关设置
  9. swarm调度
  10. node升级更新最近稳定版