// 1.定义二维数组

var data:[[String]]!

override func viewDidLoad() {

super.viewDidLoad()

// 2.实例化tableView

let tableView = UITableView(frame: self.view.bounds, style: UITableViewStyle.Plain)

//设置填充量

tableView.contentInset = UIEdgeInsetsMake(20, 0, 0, 0)

tableView.delegate = self

tableView.dataSource = self

tableView.backgroundColor = UIColor.whiteColor()

self.view.addSubview(tableView)

// 3.获取数据

let path = NSBundle.mainBundle().pathForResource("ZGFont", ofType: "plist")

//通过一个文件路径,获取文件路径下的数组文件

let array = NSArray(contentsOfFile: path!)

// 4.赋值

self.data = array as! [[String]]

}

//MARK: UITableViewDataSource

//返回的组的数量,如果没有实现,默认返回1组

func numberOfSectionsInTableView(tableView: UITableView) -> Int

{

return self.data.count

}

//返回每一组单元格的数量

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int

{

return self.data[section].count

}

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

{

let cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "myCell")

let fontName = self.data[indexPath.section][indexPath.row]

cell.textLabel?.text = fontName

cell.textLabel?.font = UIFont(name: fontName, size: 16)

return cell

}

func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {

return "第\(section)组"

}

最新文章

  1. Executor框架(转载)
  2. 【SPI】Polling Interrupt DMA
  3. IOS开发之UI布局
  4. SQLServer安装错误之--->无法打开项 UNKNOWN\Components\DA42BC89BF25F5BD0AF18C3B9B1A1EE8\c1c4f01781cc94c4c8fb1542c0981a2a
  5. 一张png图片 上面有多个图标,如何用CSS准确的知道其中某个图片的坐标
  6. arm 及ndk编译
  7. [PWA] 3. Devtool
  8. hadoop权威指南 chapter2 MapReduce
  9. JQuery标签去重与数组去重
  10. 使用SQLCMD在SQLServer执行多个脚本
  11. Docker 三剑客之 Compose
  12. 最短路模板|堆优化Dijkstra,SPFA,floyd
  13. Erlang Error Records
  14. Nginx 的 docker 部署
  15. 关于High-Contrast的资料
  16. centos安装redis +RedisDesktopManager连接redis
  17. MySQL字符存储:charset-unicode-sets
  18. 安卓逆向之基于Xposed-ZjDroid脱壳
  19. 优化iOS程序性能的25个方法
  20. MVC4中视图获取控制器中返回的json格式数据

热门文章

  1. monkey基础学习
  2. eclipse-maven安装配置java-web-servlet
  3. 手把手教你学node.js之一个简单的express应用
  4. PR曲线 ROC曲线的 计算及绘制
  5. hdu5009
  6. Float类型出现舍入误差的原因(round 取位)
  7. [one day one question] safari缓存太厉害
  8. c++第二十二天
  9. Git-分支管理【转】
  10. hdu 4745 Two Rabbits 区间DP