UItableView的代理详解

 //返回表格视图应该显示的数据的段数
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return dataArray!.count
 }
//返回表格视图上每段应该显示的数据的行数
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return dataArray!.objectAtIndex(section).count
}
    //返回某行上应该显示的单元格
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        //定义一个cell标示符,用以区分不同的cell
        let cellID : String = "cell"
        
        //从cell复用池中拿到可用的cell
        /*
         我们为什么要实现单元格的复用机制?
         单元格每一个cell的生成都是要init alloc的,所以当我们滑动表格试图的时候会生成很多cell,无异于浪费了大量的内存
         单元格的复用机制原理
         一开始的时候我们创建了桌面最多能显示的单元格数,cell
         当我们向下滚动表格试图的时候,单元格上部的内容会消失,下部的内容会出现,这个时候我们将上部分消失的单元格赋给下部分出现的单元格
         因此我们就做到了只生成了屏幕范围可显示的单元格个数,就实现滑动表格试图时,以后不会再init alloc单元格cell了,从而实现了节省内存的原理
         */
        var cell = tableView.dequeueReusableCellWithIdentifier(cellID) as UITableViewCell!
        //检测,拿到一个可用的cell
        if(cell == nil)
        {
            //创建新的cell
            /*
             UITableViewCellStyle.Default,    // 左侧显示textLabel(不显示detailTextLabel),imageView可选(显示在最左边)
             UITableViewCellStyle.Value1,        // 左侧显示textLabel、右侧显示detailTextLabel(默认蓝色),imageView可选(显示在最左边)
             UITableViewCellStyle.Value2,        // 左侧依次显示textLabel(默认蓝色)和detailTextLabel,imageView可选(显示在最左边)
             UITableViewCellStyle.Subtitle    // 左上方显示textLabel,左下方显示detailTextLabel(默认灰色),imageView可选(显示在最左边)
             */
            cell = UITableViewCell.init(style: UITableViewCellStyle.Subtitle, reuseIdentifier: cellID)
        }
        let array =  self.dataArray!.objectAtIndex(indexPath.section)
        let dic = array.objectAtIndex(indexPath.row)
    //cell上文本
        cell.textLabel?.textColor = UIColor.blackColor()
        cell.textLabel?.text = dic.objectForKey("title") as! String//cell上的子标题
        cell.detailTextLabel?.text = dic.objectForKey("detail") as! String
        //cell上图片
        cell.imageView?.image = UIImage(named: dic.objectForKey("image") as! String)
        
        return cell;
    }
    //设置分段的头标题
    func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
        //如果是第0个分段
        if(section == 0){
            return "第 0 段段头"
        }
        //否则,(即第一个分段)
        return "第 1 段段头"
    }
    //设置分段脚标题
    func tableView(tableView: UITableView, titleForFooterInSection section: Int) -> String? {
        
        if(section == 0){
            
            return "第 0 段段尾"
        }
        return "第 1 段段尾"
    }
    //右边索引字节数(如果不实现 就不显示右侧索引)
func sectionIndexTitlesForTableView(tableView: UITableView) -> [String]? {
//    
//        return self.sectionTitleArray
//    }
//
//    //点击右边的索引,调用该方法
//    func tableView(tableView: UITableView, sectionForSectionIndexTitle title: String, atIndex index: Int) -> Int {
//        
//        let key = self.sectionTitleArray?.objectAtIndex(index)
//        print("sectionForSectionIndexTitle key=%@",key);
//        if (key == UITableViewIndexSearch) {
//            
//            myTableView?.setContentOffset(CGPointZero, animated: false)
//            
//            return NSNotFound
//        }
//        
//        return index
//    }
    //让表格可以修改,滑动可以修改
    func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool {
        
        return true
    }
    //允许移动
    func tableView(tableView: UITableView, canMoveRowAtIndexPath indexPath: NSIndexPath) -> Bool {
        
        return true
    }
    
    //执行删除或者插入
    func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
        
        //删除
        if (editingStyle == UITableViewCellEditingStyle.Delete) {
            
            let row = indexPath.row
            self.dataArray?.removeObjectAtIndex(row)
            let  array = [indexPath]
            tableView.deleteRowsAtIndexPaths(array, withRowAnimation: UITableViewRowAnimation.Automatic)
            
            /*
             UITableViewRowAnimationAutomatic
             UITableViewRowAnimationTop
             UITableViewRowAnimationBottom
             UITableViewRowAnimationLeft
             UITableViewRowAnimationRight
             UITableViewRowAnimationMiddle
             UITableViewRowAnimationFade
             UITableViewRowAnimationNone
             */
        }
            //插入
        else if (editingStyle == UITableViewCellEditingStyle.Insert){
            
            //我们实现的是在所选行的位置插入一行,因此直接使用了参数indexPath
            let insertIndexPaths = [indexPath]
            //同样,将数据加到list中,用的row
            //        [self.dataArray insertObject:@"新添加的行" atIndex:indexPath.];
            tableView.insertRowsAtIndexPaths(insertIndexPaths, withRowAnimation: UITableViewRowAnimation.Right)
        }

    }
    
    //开始移动row时执行
    func tableView(tableView: UITableView, moveRowAtIndexPath sourceIndexPath: NSIndexPath, toIndexPath destinationIndexPath: NSIndexPath) {
     
        let fromRow = sourceIndexPath.row
        let toRow = destinationIndexPath.row
        
        let object = self.dataArray?.objectAtIndex(sourceIndexPath.section).objectAtIndex(fromRow)
        
        self.dataArray?.removeObjectAtIndex(fromRow)
//        self.dataArray?.insertObject(object, atIndex: toRow)
    }
    //移动row时执行
    func tableView(tableView: UITableView, targetIndexPathForMoveFromRowAtIndexPath sourceIndexPath: NSIndexPath, toProposedIndexPath proposedDestinationIndexPath: NSIndexPath) -> NSIndexPath {
        print("targetIndexPathForMoveFromRowAtIndexPath")
        //用于限制只在当前section下面才可以移动
        if(sourceIndexPath.section != proposedDestinationIndexPath.section){
            return sourceIndexPath
        }
        return proposedDestinationIndexPath
    }
    //打开编辑模式后,默认情况下每行左边会出现红的删除按钮
    func tableView(tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyle {
        
        return UITableViewCellEditingStyle.Delete
    }
    //返回每一行的行高
    func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
        
        return 60;
    }
    //返回每一段段头的高度
    func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        
        return 40;
    }

    //返回每一段段尾的高度
    func tableView(tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
        
        return 40;
    }
    //自定义头标题的view
    func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
        
        let label = UILabel()
        label.backgroundColor = UIColor.grayColor()
        label.textAlignment = NSTextAlignment.Center;
        label.font = UIFont.systemFontOfSize(20)
        label.textColor = UIColor.blackColor()
        
        //如果分段为第0段
        if(section == 0){
            label.text = "第0段的断头"
        }
            //如果分段为第一段
        else{
            
            label.text = "第 1 段的断头"
        }
        //return的view会替换自带的头标题view
        //frame设置无效,位置是固定的,宽度固定和table一样,高度通过代理方法设置
        return label
    }
    //自定义尾标题的view
    func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
        
        let label = UILabel()
        label.backgroundColor = UIColor.redColor()
        label.textAlignment = NSTextAlignment.Center
        label.font = UIFont.systemFontOfSize(20)
        label.textColor = UIColor.blackColor()
        
        //如果分段为第0段
        if(section == 0){
            label.text = "第0段的断尾";
        }
            //如果分段为第一段
        else{
            label.text = "第 1 段的断尾";
        }
        return label
    }
    //cell将要显示
    func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
       
    }
    //cell已经显示
    func tableView(tableView: UITableView, didEndDisplayingCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
        
    }
    
    //头View将要显示
    func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
    }
    //头View已经显示
    func tableView(tableView: UITableView, didEndDisplayingHeaderView view: UIView, forSection section: Int) {
        
    }
    //尾View将要显示
    func tableView(tableView: UITableView, willDisplayFooterView view: UIView, forSection section: Int) {
        
    }
    //尾View已经显示
    func tableView(tableView: UITableView, didEndDisplayingFooterView view: UIView, forSection section: Int) {
        
        
    }
    //UITableViewCell的附件属性
    func tableView(tableView: UITableView, accessoryTypeForRowWithIndexPath indexPath: NSIndexPath) -> UITableViewCellAccessoryType {
        
        if (indexPath.section == 0 && indexPath.row == 3) {
            
            return UITableViewCellAccessoryType.Checkmark
        }
        
        return UITableViewCellAccessoryType.None
    }

    //点击了附加图标时执行
    func tableView(tableView: UITableView, accessoryButtonTappedForRowWithIndexPath indexPath: NSIndexPath) {
        
    }
    //是否将要点亮某一行
    func tableView(tableView: UITableView, shouldHighlightRowAtIndexPath indexPath: NSIndexPath) -> Bool {
        
        return true
    }
    
    //是否已经点亮某一行
    func tableView(tableView: UITableView, didHighlightRowAtIndexPath indexPath: NSIndexPath) {
        
    }
    //不点量某一行
    func tableView(tableView: UITableView, didUnhighlightRowAtIndexPath indexPath: NSIndexPath) {
        
        
    }
    //将要选中某一行
    func tableView(tableView: UITableView, willSelectRowAtIndexPath indexPath: NSIndexPath) -> NSIndexPath? {
     
        return indexPath
    }
    //已经选中某一行
    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        
        
    }
    //将要反选某一行
    func tableView(tableView: UITableView, willDeselectRowAtIndexPath indexPath: NSIndexPath) -> NSIndexPath? {
        
        return indexPath
    }
    //已经反选了某一行
    func tableView(tableView: UITableView, didDeselectRowAtIndexPath indexPath: NSIndexPath) {
        
    }
    //返回删除
    func tableView(tableView: UITableView, titleForDeleteConfirmationButtonForRowAtIndexPath indexPath: NSIndexPath) -> String? {
        
        return "删除"
    }
    // 8.0后侧滑菜单的新接口,支持多个侧滑按钮。
    func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [UITableViewRowAction]? {
        
        return [UITableViewRowAction.init(style: UITableViewRowActionStyle.Normal, title: "编辑", handler: { (UITableViewRowAction, indexPath) in
                
                
            }),UITableViewRowAction.init(style: UITableViewRowActionStyle.Default, title: "删除", handler: { (UITableViewRowAction, indexPath) in
                
                
            })]
    }
    //编辑模式下,让行缩进
    func tableView(tableView: UITableView, shouldIndentWhileEditingRowAtIndexPath indexPath: NSIndexPath) -> Bool {
        
        return true
    }
    //行缩进
    func tableView(tableView: UITableView, indentationLevelForRowAtIndexPath indexPath: NSIndexPath) -> Int {
        
        return indexPath.row
        
    }
    //将要开始编辑某一行
    func tableView(tableView: UITableView, willBeginEditingRowAtIndexPath indexPath: NSIndexPath) {
        
        
    }
//结束编辑某一行
    func tableView(tableView: UITableView, didEndEditingRowAtIndexPath indexPath: NSIndexPath) {
    }
//允许Menu菜单
    func tableView(tableView: UITableView, shouldShowMenuForRowAtIndexPath indexPath: NSIndexPath) -> Bool {
        return true
    }
    //每个cell都可以点击出现Menu菜单
    func tableView(tableView: UITableView, canPerformAction action: Selector, forRowAtIndexPath indexPath: NSIndexPath, withSender sender: AnyObject?) -> Bool {
        
        if (action == #selector(cut(_:))){
            
            
            return false
            
        }  else if(action == #selector(copy(_:))){
            
            
            return false
            
        }
        
        else if(action == #selector(paste(_:))){
            
            
            return false
            
        }
        
        else if(action == #selector(select(_:))){
            
            
            return false
            
        }
        
        else if(action == #selector(selectAll(_:))){
            
            
            return false
            
        }else{
            
            return super.canPerformUnwindSegueAction(action, fromViewController: self, withSender: sender)
            
        }

    }
    func tableView(tableView: UITableView, performAction action: Selector, forRowAtIndexPath indexPath: NSIndexPath, withSender sender: AnyObject?) {
        
        if (action == #selector(copy(_:))) {
            
            
        }
        
        if (action == #selector(cut(_:))) {
            
            
        }
        
        if (action == #selector(paste(_:))) {
            
            
        }

        
    }
    //焦点
    func tableView(tableView: UITableView, canFocusRowAtIndexPath indexPath: NSIndexPath) -> Bool {
        
        return true
    }
    func tableView(tableView: UITableView, shouldUpdateFocusInContext context: UITableViewFocusUpdateContext) -> Bool {
        
        return true
    }
    func tableView(tableView: UITableView, didUpdateFocusInContext context: UITableViewFocusUpdateContext, withAnimationCoordinator coordinator: UIFocusAnimationCoordinator) {

    }
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,723评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,485评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,998评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,323评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,355评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,079评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,389评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,019评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,519评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,971评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,100评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,738评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,293评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,289评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,517评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,547评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,834评论 2 345

推荐阅读更多精彩内容