Swift版UITableView分組

import UIKit

class ViewController: UIViewController ,UITableViewDelegate,UITableViewDataSource{

var tableView = UITableView()

var datas = NSMutableArray()

//記錄點(diǎn)擊的組的位置

var _sectonIndex:NSInteger?;

//記錄每組是否是否展開的狀態(tài)

var isOpenArray:NSMutableArray?;

override func viewDidLoad() {

super.viewDidLoad()

_sectonIndex = -1;

isOpenArray = NSMutableArray();

for i in 0...10 {

print(i)

let isOpen = false;

isOpenArray?.addObject(NSNumber(bool: isOpen));

}

self.title = "分組"

tableView = UITableView(frame: CGRectMake(0, 0, UIScreen.mainScreen().bounds.size.width, UIScreen.mainScreen().bounds.size.height));

tableView.delegate = self;

tableView.dataSource = self;

tableView.tableFooterView = UIView()

self.view.addSubview(tableView);

// 補(bǔ)全不足線

if tableView.respondsToSelector(Selector("setSeparatorInset:")){

tableView.separatorInset = UIEdgeInsetsZero

}

if tableView.respondsToSelector(Selector("setLayoutMargins:")){

tableView.layoutMargins = UIEdgeInsetsZero

}

//? ? ? ? 解析plist文件

let dic:NSDictionary = NSDictionary(contentsOfURL: NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource("friend", ofType: "plist")!))!

print(dic)

let array = dic.objectForKey("list") as!NSMutableArray

datas = array

let friend = array[0].objectForKey("spus")

print(friend)

}

//重寫補(bǔ)全不足線的方法

func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {

if cell.respondsToSelector(Selector("setLayoutMargins:")){

cell.layoutMargins = UIEdgeInsetsZero

}

if cell.respondsToSelector(Selector("setSeparatorInset:")){

cell.separatorInset = UIEdgeInsetsZero

}

}

//組頭的高度

func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {

return 40;

}

//自定義組頭的內(nèi)容

func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {

let seclabel = UILabel(frame: CGRectMake(0,0,UIScreen.mainScreen().bounds.size.width,40));

seclabel.text =? ("? ? ") + (self.datas[section].objectForKey("name") as? String)!;

seclabel.backgroundColor = UIColor.whiteColor();

seclabel.layer.borderWidth = 0.3

seclabel.layer.borderColor = UIColor.init(colorLiteralRed: 217/255.0, green: 217/255.0, blue: 217/255.0, alpha: 0.6).CGColor

seclabel.tag = section;

//添加手勢(shì)

seclabel.userInteractionEnabled = true;

let tap = UITapGestureRecognizer(target: self, action: #selector(ViewController.tapAction(_:)));

tap.numberOfTapsRequired = 1;

tap.numberOfTouchesRequired = 1;

seclabel.addGestureRecognizer(tap);

return seclabel;

}

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat{

return 90

}

//自定義組尾的內(nèi)容

func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {

return UIView();

}

//組數(shù)

func numberOfSectionsInTableView(tableView: UITableView) -> Int {

return self.datas.count;

}

//行數(shù)

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

let isOpen = isOpenArray![section] as! Bool;

if isOpen == true{

return self.datas[section].objectForKey("spus")!.count;

}

return 0;

}

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

var cell = tableView.dequeueReusableCellWithIdentifier("cell") as! MyCell!

if (cell == nil){

cell = MyCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "cell");

}

cell.nameLable.text = (self.datas[indexPath.section].objectForKey("spus") as? NSMutableArray)![indexPath.row].objectForKey("name") as? String

cell.ageLable.text = (self.datas[indexPath.section].objectForKey("spus") as? NSMutableArray)![indexPath.row].objectForKey("age") as? String

cell.iconImageView.image = UIImage(named:((self.datas[indexPath.section].objectForKey("spus") as? NSMutableArray)![indexPath.row].objectForKey("icon") as? String)!)

return cell

}

//手勢(shì)調(diào)用的方法

func tapAction(tap:UITapGestureRecognizer){

let index = tap.view?.tag;

var isOpen = isOpenArray![index!] as! Bool;

isOpen = !isOpen;

isOpenArray![index!] = NSNumber(bool: isOpen);

// UIView.animateWithDuration(0.5) {

self.tableView.reloadData();

//}

}

//cell點(diǎn)擊的代理方法

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

//取消選中狀態(tài)

tableView.deselectRowAtIndexPath(indexPath, animated: true);

}

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末洲脂,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子慎式,更是在濱河造成了極大的恐慌,老刑警劉巖造成,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件址否,死亡現(xiàn)場(chǎng)離奇詭異贬派,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)坛善,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門晾蜘,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人眠屎,你說我怎么就攤上這事剔交。” “怎么了改衩?”我有些...
    開封第一講書人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵岖常,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我葫督,道長(zhǎng)竭鞍,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任橄镜,我火速辦了婚禮偎快,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘洽胶。我一直安慰自己晒夹,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著丐怯,像睡著了一般喷好。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上响逢,一...
    開封第一講書人閱讀 49,031評(píng)論 1 285
  • 那天绒窑,我揣著相機(jī)與錄音棕孙,去河邊找鬼舔亭。 笑死,一個(gè)胖子當(dāng)著我的面吹牛蟀俊,可吹牛的內(nèi)容都是我干的钦铺。 我是一名探鬼主播,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼肢预,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼矛洞!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起烫映,我...
    開封第一講書人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤沼本,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后锭沟,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體抽兆,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年族淮,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了辫红。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡祝辣,死狀恐怖贴妻,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情蝙斜,我是刑警寧澤名惩,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布,位于F島的核電站孕荠,受9級(jí)特大地震影響娩鹉,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜岛琼,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一底循、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧槐瑞,春花似錦熙涤、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽那槽。三九已至,卻和暖如春等舔,著一層夾襖步出監(jiān)牢的瞬間骚灸,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工慌植, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留甚牲,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓蝶柿,卻偏偏與公主長(zhǎng)得像丈钙,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子交汤,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容