Swift   发布时间:2022-03-31  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了[IOSS]UITableView分组大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

[IOSS]UITableView分组 DEMO:http://download.csdn.net/detail/u012881779/9233421 应用入口(AppDelegate.swift) import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var wi

[IOSS]UITableView分组

DEMO:http://download.csdn.net/detail/u012881779/9233421

应用入口(AppDelegate.swift)

import UIKit

@UIApplicationMain
class AppDelegate: UIResponder,UIApplicationDelegate {

    var window: UIWindow?


    func application(application: UIApplication,didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

        window = UIWindow(frame: UIScreen.mainScreen().bounds)
        window?.backgroundColor = UIColor.whiteColor()
        
        let viewController = DMViewController()
        let nav = UINavigationController(rootViewController: viewController)
        nav.navigationBarHidden = true
        window?.rootViewController = nav
        
        window?.makeKeyAndVisible()
                
        return true
    }
}

分组控制器(DMViewController.swift)

import UIKit

class DMViewController: UIViewController,UITableViewDelegate,UITableViewDataSource{

    @IBOutlet weak var tableView: UITableView!
    var dataArr = NSMutableArray()
    var selectSection = NSInteger()

    override func viewDidLoad() {
        super.viewDidLoad()
        tableView.delegate = self
        tableView.dataSource = self
        tableView.separatorStyle = UITableViewCellSeparatorStyle.None
        selectSection = -1
        
        //数据模拟
        for(var i = 0 ; i < 10 ; i++ ){
            let dataDict = NSMutableDictionary()
            //整型->字符串
            var title = String(i)
            title.appendContentsOf("_section")

            //浮点->字符串
            let double = 20.12
            let doubleString = NSString(format: "%f",double)
            
            dataDict.setObject(title,forKey: "title")
            dataDict.setObject(doubleString,forKey: "double")
            dataDict.setObject(String(i),forKey: "id")
            
            let tempMarr = NSMutableArray()
            for(var j = 0 ; j < 5 ; j++){
                let sectionDict = NSMutableDictionary()
                var titlej = String(j)
                titlej.appendContentsOf("_row")
                let doublej = 41.32
                let doubleStringj = NSString(format: "%f",doublej)
                sectionDict.setObject(titlej,forKey: "title")
                sectionDict.setObject(doubleStringj,forKey: "double")
                sectionDict.setObject(String(j),forKey: "id")
                tempMarr.addObject(sectionDict)
            }
            dataDict.setObject(tempMarr,forKey: "section")
            dataArr.addObject(dataDict)
        }

    }

    //组数
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return dataArr.count
    }
    
    //每组cell数
    func tableView(tableView: UITableView,numberOfRowsInSection section: Int) -> Int {
        if(selectSection == -1){
            return 1
        }else{
            if(selectSection == section){
                return dataArr.objectAtIndex(selectSection).objectForKey("section")!.count + 1
            }else{
                return 1
            }
        }
    }
    
    //赋值
    func tableView(tableView: UITableView,cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        /*认Cell
        let cell:UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Subtitle,reuseIdentifier:"cell");
        cell.textLabel!.text = "test1"
        */
       
        //自定义cell
        let cellIdentifier = "DMTableViewCell"
        self.tableView!.registerNib(UINib(nibName: "DMTableViewCell",bundle:nil),forCellReuseIdentifier: cellIdentifier)
        
        let cell : DMTableViewCell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier,forIndexPath: indexPath) as! DMTableViewCell
        cell.selectionStyle = UITableViewCellSelectionStyle.None
        
        if(selectSection == indexPath.section){
            let selectDict = dataArr.objectAtIndex(indexPath.section)
            let sectionArr = selectDict.objectForKey("section")
            if(indexPath.row == 0){
                cell.assignmentFromDictionary(dataArr.objectAtIndex(indexPath.section) as! NSDictionary,andMark: 0)
            }else{
                cell.assignmentFromDictionary(sectionArr!.objectAtIndex(indexPath.row-1) as! NSDictionary,andMark: 1)
            }
        }else{
            cell.assignmentFromDictionary(dataArr.objectAtIndex(indexPath.section) as! NSDictionary,andMark: 0)
        }
       
        return cell
    }
    
    //cell高度
    func tableView(tableView: UITableView,heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
        return 60.0
    }
    
    //选中cell
    func tableView(tableView: UITableView,didSelectRowAtIndexPath indexPath: NSIndexPath) {
        if(selectSection == indexPath.section && indexPath.row == 0){
            selectSection = -1

        }else{
            selectSection = indexPath.section
        }
        tableView.reloadData()

    }
}

分组Cell(DMTableViewCell.swift)
import UIKit

class DMTableViewCell: UITableViewCell {

    @IBOutlet weak var leftImagview: UIImageView!
    
    @IBOutlet weak var idLab: UILabel!
    
    @IBOutlet weak var titleLab: UILabel!
    
    var dataDict = NSDictionary()
    
    @IBOutlet weak var sectionView: UIView!
    
    @IBOutlet weak var rowView: UIView!
    
    @IBOutlet weak var rowImgview: UIImageView!
    
    @IBOutlet weak var rowIdLab: UILabel!
    
    @IBOutlet weak var rowTitleLab: UILabel!
    
    
    override func awakeFromNib() {
        super.awakeFromNib()
    }

    override func setSelected(selected: Bool,animated: Bool) {
        super.setSelected(selected,animated: animated)
    }
    
    //赋值
    func assignmentFromDictionary(valueDict : NSDictionary,andMark:NSInteger){
        dataDict = valueDict        
        
        if(andMark == 1){
            sectionView.hidden = true
            rowView.hidden = false
            rowIdLab.text = valueDict.valueForKey("id") as? String
            rowTitleLab.text = valueDict.objectForKey("title") as? String
        }else{
            sectionView.hidden = false
            rowView.hidden = true
            idLab.text = valueDict.valueForKey("id") as? String
            titleLab.text = valueDict.objectForKey("title") as? String
        }
    }
}

示意图:


大佬总结

以上是大佬教程为你收集整理的[IOSS]UITableView分组全部内容,希望文章能够帮你解决[IOSS]UITableView分组所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: