Swift - UITableView的用法
因为倾向于纯代码编码,所以不太喜欢可视化编程,不过也略有研究,所以项目里面的所有界面效果,全部都是纯代码编写!
终于到了重中之重的tableview的学习了,自我学习ios编程以来,工作中用得最多的就她了,所以不管是以前学习和现在学习,我都把对tableview的学习放在重点!
闲话少叙,代码如下:
一、先谈自定义cell,以及自定义cell上控件的自定义
cell是直接用xib拖拽的,很方便有木有
import UIKit
class MyCell: UITableViewCell {
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
@IBOutlet weak var headerImg: UIImageView!
@IBOutlet weak var fileLab: UILabel!
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}
二、在控制器里面的调用
1)声明及初始化
class SeventViewController: UIViewController,UITableViewDelegate,UITableViewDataSource
var myTableView:UITableView?
var imgAry = [String]()
var fileAry = [String]()
func creatTableView() {
self.myTableView = UITableView(frame:self.view.frame,style:.plain)
self.myTableView?.delegate = self
self.myTableView?.dataSource = self
self.myTableView?.tableFooterView = UIView()
self.myTableView?.register(UINib.init(nibName: "MyCell", bundle: nil), forCellReuseIdentifier: "MyCell")
self.myTableView?.rowHeight =
self.view.addSubview(self.myTableView!)
}
2)添加了一个表头,具体如下
//创建一个表头标签
let headerLab = UILabel()
headerLab.frame = CGRectMake(, , SCREEN_WIDTH, )
headerLab.backgroundColor = UIColor.orangeColor()
headerLab.textColor = UIColor.whiteColor()
headerLab.numberOfLines =
headerLab.lineBreakMode = NSLineBreakMode.ByWordWrapping //换行方式
headerLab.text = "常见 UIKIT 控件"
headerLab.font = UIFont.systemFontOfSize()
self.tableView.tableHeaderView = headerLab
3)创建内容数组
self.imgAry = ["1.jpeg","1.jpeg","1.jpeg","1.jpeg","1.jpeg","1.jpeg",]
4)代理方法的实现
有2个代理方法是必须实现的
(1)返回行数
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.imgAry.count
}
(2)cell的初始化
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell:MyCell = tableView.dequeueReusableCell(withIdentifier: "MyCell") as! MyCell
cell.headerImg.image = UIImage(named:self.imgAry[indexPath.row])
cell.fileLab.text = "\(indexPath.row)"
return cell
}
(3)cell的点击方法
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
switch indexPath.row {
case :
self.creatAlertView(title: "", msg: "\(indexPath.row)")
break
case :
self.creatAlertView(title: "", msg: "\(indexPath.row)")
break
case :
self.creatAlertView(title: "", msg: "\(indexPath.row)")
break
case :
self.creatAlertView(title: "", msg: "\(indexPath.row)")
break
case :
self.creatAlertView(title: "", msg: "\(indexPath.row)")
break
case :
self.creatAlertView(title: "", msg: "\(indexPath.row)")
break
default:
break
}
}
func creatAlertView(title:String,msg:String){
let hAlertView = UIAlertController(title:"温馨提示",message:"你点击了\(msg)",preferredStyle:.alert)
let cancelAction = UIAlertAction(title:"取消",style:.cancel,handler:nil)
let okAction = UIAlertAction(title:"好的",style:.default)
hAlertView.addAction(cancelAction)
hAlertView.addAction(okAction)
self.present(hAlertView, animated: true, completion: nil)
}
最终效果如下:

注:当然了,还有很多其他的方法,如果用到了,可以自己看一下!
三、在这里为tableview做一个分组,代码如下
1)声明
self.imgAry1 = ["2.jpeg","2.jpeg","2.jpeg","2.jpeg","2.jpeg","2.jpeg",]
2)添加并修改相关代理方法
func numberOfSections(in tableView: UITableView) -> Int {
return
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if section == {
return self.imgAry.count
}
return self.imgAry1.count
}
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
var header = NSArray()
header = ["第一区","第二区"]
return header[section] as? String
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell:MyCell = tableView.dequeueReusableCell(withIdentifier: "MyCell") as! MyCell
if indexPath.section == {
cell.headerImg.image = UIImage(named:self.imgAry[indexPath.row])
cell.fileLab.text = "\(indexPath.section+indexPath.row)"
}else
{
cell.headerImg.image = UIImage(named:self.imgAry1[indexPath.row])
cell.fileLab.text = "\(indexPath.section+indexPath.row)"
}
return cell
}
这样的话,一个简单的分组就完成了,不过tableview博大精深,还得继续钻研啊!
效果图如下:

Swift - UITableView的用法的更多相关文章
- Swift - UITableView展开缩放动画
Swift - UITableView展开缩放动画 效果 源码 https://github.com/YouXianMing/Swift-Animations // // HeaderViewTapA ...
- Swift - UITableView状态切换效果
Swift - UITableView状态切换效果 效果 源码 https://github.com/YouXianMing/Swift-Animations // // TableViewTapAn ...
- SWIFT UITableView的基本用法
import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: ...
- UITableView类用法大全:UITableView属性
[storyboard创建tableView步骤] 1.设置根视图 2.选中视图,设置导航栏editor/embed in/navigationcontroller 3.cell设置Identifie ...
- IOS SWIFT UITableView 实现简单微博列表
// // Weibo.swift // UITableViewCellExample // // Created by XUYAN on 15/8/15. // Copyright (c) 2015 ...
- Swift - UITableView里的cell底部分割线左侧靠边
override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, ...
- Swift - enumerateObjectsUsingBlock的用法
enumerateobjectsusingblock:不是Array的方法在NSArray使用.如果你想使用它,你需要一个实例NSArray而不是Array. import Foundation va ...
- swift函数的用法,及其嵌套实例
import Foundation //swift函数的使用 func sayHello(name userName:String ,age:Int)->String{ return " ...
- Swift继承的用法
一个类可以继承另一个类的方法,属性和其它特性.当一个类继承其它类,继承类叫子类,被继承类叫超类(或父类).在Swift中,继承是区分「类」与其它类型的一个基本特征. 在Swift中,类可以调用和访问超 ...
随机推荐
- feginclient和hystrix的配置
1.如果设置了 feign: hystrix: enabled: true 则 @FeignClient(value = "service-hi",configuration = ...
- NAND FLASH驱动程序
NAND FLASH是一个存储芯片那么: 这样的操作很合理"读地址A的数据,把数据B写到地址A" 问1. 原理图上NAND FLASH和S3C2440之间只有数据线, 怎么 ...
- ClouderaManager启动NodeManager失败!报错Failed to initialize container executor
报错信息: 2016-07-27 10:53:14,102 WARN org.apache.hadoop.yarn.server.nodemanager.LinuxContainerExecutor: ...
- C++中冒号和双冒号的用法
1.冒号(:)用法 (1)表示机构内位域的定义(即该变量占几个bit空间) typedef struct _XXX{ unsigned char a:4; unsigned char c; } ; X ...
- jacky自问自答-数据库
1.exists和in有什么区别? EXISTS用于检查子查询是否至少会返回一行数据,该子查询实际上并不返回任何数据,而是返回值True或False,而In子查询则是返回具体的数据值,与指定的字段比较 ...
- [uboot]在uboot里面添加环境变量使用run来执行
转自:http://blog.csdn.net/yangzheng_yz/article/details/41038259 在移植uboot的时候,可以在uboot里面添加定义一些自己的环境变量,这些 ...
- Ubuntu下安装Apache
Ubuntu为我们提供了 su apt-get install 命令,通过它你可以很方便地安装一些软件,这些软件是放在Ubuntu放置在各个地方的服务器上面,如果你想安装的软件是比较常见的,一般都可以 ...
- UTF-8以字节为单位对Unicode进行编码
UTF-8以字节为单位对Unicode进行编码.从Unicode到UTF-8的编码方式如下: Unicode编码(16进制) UTF-8 字节流(二进制) 000000 - 00007F 0xxxxx ...
- java——常用类的总结
package test; import java.util.ArrayList; import java.util.HashMap; import java.util.Set; public cla ...
- 后台测试常需要的htm样式
<form name="form" method="post" action="#"> <input type=" ...