模仿QQ好友列表襟齿,點擊分組會打開具體的聯(lián)系人,代碼簡單易懂枕赵,為菜鳥服務(wù)

////? ViewController.m//? xcjtest////? Created by ruicheng on 16/6/27.//? Copyright ? 2016年 ruicheng. All rights reserved.//#import "ViewController.h"@interface ViewController ()@property (nonatomic ,strong) UITableView *tableView;

/** headview 是 一個button */

@property (nonatomic, strong) NSMutableArray *btnArr;

/**各個section對應(yīng)的cell里面的內(nèi)容 是一個二維的數(shù)組*/

@property (nonatomic, strong) NSMutableArray *contentArr;

@end

@implementation ViewController

#pragma mark - 懶加載

- (NSMutableArray *)contentArr

{

if (!_contentArr) {

_contentArr = [[NSMutableArray alloc]init];

NSArray *arr1 = [[NSArray alloc]initWithObjects:@"121",@"123",@"124", nil];

for (int i = 0 ;i <=10; i ++) {

[_contentArr addObject:arr1];

}

}

return _contentArr;

}

- (NSMutableArray *)btnArr

{

if (!_btnArr) {

_btnArr = [[NSMutableArray alloc]init];

for(int i = 0; i <= 10;i++){

UIButton *btn = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 375, 80)];

btn.backgroundColor = [UIColor redColor];

btn.tag = i;

[self.btnArr addObject:btn];

[btn addTarget:self action:@selector(blick:) forControlEvents:UIControlEventTouchUpInside];

[btn setTitle:@"被選中" forState:UIControlStateSelected];

[btn setTitle:@"未選中" forState:UIControlStateNormal];

}

}

return _btnArr;

}

- (void)viewDidLoad {

[super viewDidLoad];

//初始化table

[self initTableView];

}

/**

*? 初始化table

*/

- (void)initTableView

{

self.tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];

[self.view addSubview:self.tableView];

self.tableView.delegate = self;

self.tableView.dataSource = self;

self.tableView.showsVerticalScrollIndicator = NO;

}

/**

*? 按鈕點擊事件

*

*? @param btn 被點擊的按鈕

*/

- (void)blick:(UIButton *)btn

{

//按鈕的取反

btn.selected = !btn.selected;

//刷新指定的section

NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:btn.tag];

[self.tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationFade];

}

#pragma mark - UITableViewDelegate

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

//最關(guān)鍵的地方猜欺,從btnArr里面取出section對應(yīng)的button,判讀是否被選中拷窜,被選中就是顯示contentArr里面對應(yīng)的內(nèi)容开皿,沒有選中就顯示0;

UIButton *btn = (UIButton *)self.btnArr[section];

return btn.selected ? [self.contentArr[section] count]: 0;

}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{

return self.btnArr.count;

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString *reusid = @"cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reusid];

if (!cell) {

cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reusid];

}

cell.textLabel.text = self.contentArr[indexPath.section][indexPath.row];

return cell;

}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{

return 0;

}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

return 40;

}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{

return self.btnArr[section];

}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{

return [[UIView alloc]init];

}

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末篮昧,一起剝皮案震驚了整個濱河市赋荆,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌懊昨,老刑警劉巖窄潭,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異酵颁,居然都是意外死亡嫉你,警方通過查閱死者的電腦和手機月帝,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來均抽,“玉大人嫁赏,你說我怎么就攤上這事∮突樱” “怎么了潦蝇?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長深寥。 經(jīng)常有香客問我攘乒,道長,這世上最難降的妖魔是什么惋鹅? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任则酝,我火速辦了婚禮,結(jié)果婚禮上闰集,老公的妹妹穿的比我還像新娘沽讹。我一直安慰自己,他們只是感情好武鲁,可當(dāng)我...
    茶點故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布爽雄。 她就那樣靜靜地躺著,像睡著了一般沐鼠。 火紅的嫁衣襯著肌膚如雪挚瘟。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天饲梭,我揣著相機與錄音乘盖,去河邊找鬼。 笑死憔涉,一個胖子當(dāng)著我的面吹牛订框,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播监氢,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼布蔗,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了浪腐?” 一聲冷哼從身側(cè)響起纵揍,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎议街,沒想到半個月后泽谨,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年吧雹,在試婚紗的時候發(fā)現(xiàn)自己被綠了骨杂。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,814評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡雄卷,死狀恐怖搓蚪,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情丁鹉,我是刑警寧澤妒潭,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布,位于F島的核電站揣钦,受9級特大地震影響雳灾,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜冯凹,卻給世界環(huán)境...
    茶點故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一谎亩、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧宇姚,春花似錦匈庭、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至呀洲,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間啼止,已是汗流浹背道逗。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留献烦,地道東北人滓窍。 一個月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像巩那,于是被迫代替她去往敵國和親吏夯。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,728評論 2 351

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