UITableView及簡單通訊錄功能

import "AppDelegate.h"

import "RootViewController.h"

@interface AppDelegate ()

@end

@implementation AppDelegate

  • (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];

    RootViewController *rootVC = [[RootViewController alloc]init];
    UINavigationController *navC = [[UINavigationController alloc]initWithRootViewController:rootVC];
    [self.window setRootViewController:navC];

    return YES;
    }


import "RootViewController.h"

@interface RootViewController ()<UITableViewDataSource,UITableViewDelegate>

@property (nonatomic ,retain)NSArray *dataArray; // 數(shù)據(jù)源庶诡,用來給cell賦值
@property (nonatomic ,retain)NSDictionary *dict;
@property (nonatomic ,retain)NSMutableArray *titleArray; // 用來盛放頭標(biāo)題

@end

@implementation RootViewController

  • (void)viewDidLoad {
    [super viewDidLoad];
    // 初始化數(shù)據(jù)源并且添加數(shù)據(jù)
    self.dataArray = [NSArray arrayWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J", nil];

    NSArray *arr = [NSArray arrayWithObjects:@"G",@"E",@"F",@"G",@"H", nil];
    self.dict = [NSDictionary dictionaryWithObjectsAndKeys:_dataArray,@"0",arr,@"1", nil];

    // 添加頭標(biāo)題
    self.titleArray = [NSMutableArray array];
    for (NSArray *arrayItem in self.dict.allValues) {
    // 從數(shù)組中取出第一個元素
    // 判斷字典中的元素是否存在末誓,如果存在它的類型是否為數(shù)組 且存在數(shù)組元素(不為空)
    if (arrayItem && [arrayItem isKindOfClass:[NSArray class]] && arrayItem.count) {
    NSString *nameStr = [arrayItem objectAtIndex:0];
    // 判斷數(shù)組中的元素是否存在傀蚌,如果存在類型是否為字符串,如果為字符串類型撩幽,判斷字符串長度是否為零
    if (nameStr && [nameStr isKindOfClass:[NSString class]] && nameStr.length) {
    // 截取字符串的首個字符
    NSString *resultStr = [nameStr substringToIndex:1];
    // 將首個字符串添加進數(shù)組
    [self.titleArray addObject:resultStr];
    }
    }
    }

    self.navigationItem.title = @"RootVC";
    // 創(chuàng)建表視圖
    // 設(shè)置分割線樣式 style:設(shè)置單元格樣式箩艺,有兩種樣式:plain(平鋪) group ,默認樣式為:plain
    UITableView *tableView = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStyleGrouped];
    // 設(shè)置分割線樣式
    tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
    // 設(shè)置分割線顏色
    tableView.separatorColor = [UIColor orangeColor];
    // 如果我們每個的cell的高度是統(tǒng)一的榨惰,可以直接用屬性來設(shè)置
    tableView.rowHeight = 60;

    tableView.dataSource = self;
    tableView.delegate = self;
    [self.view addSubview:tableView];
    }

pragma mark --- 表視圖的代理方法

// 共有多少個分區(qū) 此代理方法為可選的琅催,如果不實現(xiàn)該代理方法虫给,默認整個表視圖只有一個分區(qū)
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
// return 1;
// 返回字典中元素的個數(shù),作為分區(qū)的個數(shù)
return self.dict.count;
}

// 每個分區(qū)下返回的行數(shù)
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
// return 10;
// 這里單元格個數(shù)一般不寫死缠黍,將數(shù)據(jù)源的個數(shù)作為返回值瓷式,根據(jù)數(shù)據(jù)的數(shù)量創(chuàng)建單元格的數(shù)量
// return self.dataArray.count;// 返回所有數(shù)據(jù)的個數(shù)
// 根據(jù)當(dāng)前所在的分區(qū)贸典,取得字典中對應(yīng)的鍵
// NSString *keyString = self.dict.allKeys[section];
// // 根據(jù)鍵取出對應(yīng)的值,由于字典的值為數(shù)組瓤漏,所以可以有count屬性
// return [self.dict[keyString] count];

//  根據(jù)所在分區(qū)取出字典的值
NSArray *array = [self.dict.allValues objectAtIndex:section];
return array.count;

}

// 定義單元格 IndexPath:單元格當(dāng)前所在位置
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString *identifier = @"cell";
//  identifier: 因為一個表視圖中可能存在多種樣式的單元格蔬充,我們把相同樣式的單元格放到同一個集合里面,為這個集合加標(biāo)示符榨呆,當(dāng)我們需要用到某種樣式的單元格的時候庸队,根據(jù)不同的標(biāo)示符,從不同的集合中找尋單元格
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];//  在某個標(biāo)示符下竿拆,可以再度被移出重新使用的cell

// ? 如果從集合中為找到單元格丙笋,也就是集合中好沒有單元格煌贴,也就是還沒有單元格出屏幕,那么我們需要創(chuàng)建單元格
if (!cell) {
// 創(chuàng)建cell的時候需要標(biāo)示符是因為,當(dāng)該cell出屏幕的時候?qū)卧癜凑詹煌愋头湃牒图?br> cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier];

    //  設(shè)置cell的Style怠肋,不涉及到數(shù)據(jù)的重新賦值淹朋,我們可以在初始化cell的時候給它設(shè)置好
    //  設(shè)置輔助視圖
    cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
    //  設(shè)置選中后的效果
    cell.selectionStyle = UITableViewCellSelectionStyleDefault;
}

//  創(chuàng)建單元格

// UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];

//  為cell上添加文字      indexPath.row : 單元格所在的行數(shù)

// cell.textLabel.text = [NSString stringWithFormat:@"我是第%ld個單元格,我在%ld分區(qū)",(long)indexPath.row+1,indexPath.section];
// indexPath.row是得到當(dāng)前單元格所在的那一行础芍,起始位置為0,數(shù)組下標(biāo)的起始位置也是零春感,所以我們可以根據(jù)單元格所在的行數(shù)來從數(shù)組中取值顯示
// cell.textLabel.text = [self.dataArray objectAtIndex:indexPath.row];

// NSString *keyString = self.dict.allKeys[indexPath.section];
// NSArray *array = self.dict[keyString];
NSArray *valueArray = [self.dict.allValues objectAtIndex:indexPath.section];

cell.textLabel.text = [valueArray objectAtIndex:indexPath.row];

//  副標(biāo)題  這種樣式只能在非default的樣式下使用虏缸,只為顯示位置有所改變
cell.detailTextLabel.text = @"副標(biāo)題嫩实,顏色淺色";
//  不管任何Style樣式下,都給可以給cell添加圖片
cell.imageView.image = [UIImage imageNamed:@"11"];

return cell;
}

// 為每個分區(qū)頭添加標(biāo)題的代理方法
-(NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
// 為每個分區(qū)添加頭標(biāo)題
// NSArray *titArray = [NSArray arrayWithObjects:@"1",@"2", nil];
// return [titArray objectAtIndex:section];

// NSString *string = [[self.dict.allValues objectAtIndex:section] objectAtIndex:0];
// NSString *subStr = [string substringToIndex:1];
// return subStr;

int index = (int)(self.titleArray.count > section ? section : -1);
if (index != -1) {
    return [self.titleArray objectAtIndex:section];
}else
    return @"數(shù)組元素不夠了";

}

//? 點擊cell所響應(yīng)的代理方法
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
// 根據(jù)indexPath得到當(dāng)前所點擊的cell
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
NSLog(@"------%ld",(long)indexPath.row);
}

// 通過代理設(shè)置cell的高度
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{

//  一般cell都需要根據(jù)內(nèi)容來自適應(yīng)高度甲献,高度的變化就在此處根據(jù)indexPath來更改(每個cell的高度不統(tǒng)一)
//  設(shè)置第一個cell高度200,其他都是100
if (indexPath.row == 0) {
    return 100;
}
return 60;

}

// 添加右側(cè)索引條的代理方法
-(NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView{
return [NSArray arrayWithObjects:@"a",@"b",@"c",@"d", nil];
}

  • (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
    }
    @end
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末朦乏,一起剝皮案震驚了整個濱河市呻疹,隨后出現(xiàn)的幾起案子筹陵,更是在濱河造成了極大的恐慌,老刑警劉巖朦佩,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件宋彼,死亡現(xiàn)場離奇詭異颅筋,居然都是意外死亡,警方通過查閱死者的電腦和手機占贫,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門型奥,熙熙樓的掌柜王于貴愁眉苦臉地迎上來厢汹,“玉大人,你說我怎么就攤上這事烫葬〈钭郏” “怎么了划栓?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵蒋歌,是天一觀的道長帅掘。 經(jīng)常有香客問我修档,道長府框,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任癣诱,我火速辦了婚禮撕予,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘实抡。我一直安慰自己吆寨,他們只是感情好啄清,可當(dāng)我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布俺孙。 她就那樣靜靜地躺著睛榄,像睡著了一般。 火紅的嫁衣襯著肌膚如雪场靴。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天咧欣,我揣著相機與錄音泞边,去河邊找鬼该押。 笑死疗杉,一個胖子當(dāng)著我的面吹牛阵谚,可吹牛的內(nèi)容都是我干的蚕礼。 我是一名探鬼主播,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼梢什,長吁一口氣:“原來是場噩夢啊……” “哼奠蹬!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起嗡午,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤囤躁,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后荔睹,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體狸演,經(jīng)...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年宵距,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片哨鸭。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡哈恰,死狀恐怖仅乓,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情子漩,我是刑警寧澤紧显,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站枷畏,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏渴肉。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望华弓。 院中可真熱鬧,春花似錦迁霎、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至捷雕,卻和暖如春非区,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背管怠。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工她肯, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留晴氨,地道東北人。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓阻荒,卻偏偏與公主長得像瘪贱,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子球昨,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,527評論 2 349

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