//
// ViewController.swift
// tableview的创建
//
// Created by mibo02 on 16/12/21.
// Copyright © 2016年 mibo02. All rights reserved.
//
import UIKit
class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate{
var tableView: UITableView!
var dataArray = NSMutableArray()
var imageArray = NSMutableArray()
let cellID = "testCellID"
var isEdit = false//判断tableview是否是在编辑状态
override func viewDidLoad() {
super.viewDidLoad()
self.title = "UITableView"
//
self.imageArray = ["1.jpg","1.jpg","1.jpg","1.jpg","1.jpg","1.jpg","1.jpg","1.jpg"]
self.dataArray = ["first","second","three","four","five","six","seven","eight"]
self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: "编辑", style: UIBarButtonItemStyle.done, target: self, action: #selector(ViewController.rightBarButtonItemClicked))
//初始化TableView
self.tableView = UITableView(frame: CGRect(x:0,y:0, width:self.view.frame.size.width,height:self.view.frame.size.height), style: UITableViewStyle.plain)
self.tableView.dataSource = self
self.tableView.delegate = self
self.tableView.rowHeight = 50
self.tableView.register(UITableViewCell.classForCoder(), forCellReuseIdentifier: cellID)
self.view.addSubview(self.tableView)
self.tableView.tableFooterView = UIView()
}
func rightBarButtonItemClicked() {
if isEdit {
self.tableView.setEditing(false, animated: true)
isEdit = false
} else {
self.tableView.setEditing(true, animated: true)
isEdit = true
}
}
//返回cell的行数
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.dataArray.count
}
//返回cell
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellID, for: indexPath)
cell.textLabel?.text = self.dataArray[indexPath.row] as? String
cell.imageView?.image = UIImage(named: self.imageArray[indexPath.row] as! String)
return cell;
}
//可被编辑
func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return true
}
//确定编辑模式(默认是滑动删除模式)
func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle {
return UITableViewCellEditingStyle.delete
}
//具体编辑操作(默认删除操作)
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
//
self.dataArray.removeObject(at: indexPath.row)
//
self.tableView.deleteRows(at: [indexPath], with: UITableViewRowAnimation.top)
}
//允许移动某一行
func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
return true
}
//实现排序
func tableView(_ tableView: UITableView, moveRowAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
//后面加as。。。
let object:AnyObject = self.dataArray[sourceIndexPath.row] as AnyObject
//
self.dataArray.removeObject(at: sourceIndexPath.row)
self.dataArray.insert(object, at: destinationIndexPath.row)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
swift Tableview创建使用
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 由于之前项目用的都是Objective-C,所以swift好多东西都忘了,现在抽空再学习一下。 第一部分,创建静态...
- http://blog.csdn.net/syg90178aw/article/details/46981277
- 刚用 swift开发不久,经常遇到一些大大小小的问题,记录下来也顺便分享给大家。 用xib自定义了一个tableH...
- 一、Transformation 和 Actionde 的區別在於Spark計算RDD的方式不同(來源:[1]):...