iOS應(yīng)用開發(fā)實(shí)戰(zhàn)(14-17)-TableView

這門課 最麻煩 實(shí)用 的組件來了俗孝。。魄健。
這個(gè)組件的學(xué)習(xí)分了四個(gè)課時(shí)赋铝,基本上占用了第三周的全部課程,而第三周的作業(yè)基本就是TableView的使用沽瘦。革骨。Fighting农尖!

要素

  1. 數(shù)據(jù)集的輸入(data source)
  2. 每行數(shù)據(jù)的顯示 (view factiory(row data))
  3. 操作(event handler)
    1.點(diǎn)擊
    2.調(diào)整順序
    3.增刪改

OC中的實(shí)現(xiàn)

結(jié)構(gòu).png

主要方法和屬性

.style:plan,grouped
typedef NS_ENUM(NSInteger, UITableViewStyle) {
    UITableViewStylePlain,          // regular table view
    UITableViewStyleGrouped         // preferences style table view  
};

@protocol UITableViewDataSource<NSObject>
//@required
- (NSInteger)tableView:(UITableView *)tableView     numberOfRowsInSection:(NSInteger)section;
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath;
//@optional
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
- (nullable NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
- (nullable NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;

@protocol UITableViewDelegate<NSObject, UIScrollViewDelegate>
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

方法和屬性一覽

原文:http://blog.csdn.net/melt_1026/article/details/50085599

20151128172641634.png
Methods
20151128172941695.png
Properties
20151128172959075.png
UITableViewDelegate
20151128173013403.png
UITableViewDataSource
20151128173024372.png

代碼舉例

#pragma mark --viewController dataSource--

//@required
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

    if ( section == 0 ) {
        return  INSERTTING ? 5 + self.insertedRows : 5;
    } 
    else {
        return 10 ;
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    NSString *cellID=[NSString stringWithFormat:@"cell_sec_%ld",(long)indexPath.section];    

 //cell的重復(fù)使用和Identifier
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];//可重用標(biāo)志
if(cell == nil) {         
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    //--style 枚舉--
    //    UITableViewCellStyleDefault
    //    UITableViewCellStyleValue1
    //    UITableViewCellStyleValue2
    //    UITableViewCellStyleSubtitle   
}
    cell.textLabel.text =[NSString stringWithFormat:@"%ld",(long)indexPath.row]; 
    cell.detailTextLabel.text =[NSString stringWithFormat:@"%ld-%ld",(long)indexPath.section,(long)indexPath.row];

    return cell;
//  return [[UITableViewCell alloc]init];

}

//@optional
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 2;
}

#pragma mark --viewController events--
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
//    NSLog(@"select %d,%d",(int)indexPath.section,(int)indexPath.row);

    _message = [NSString stringWithFormat:@"%ld-%ld",(long)indexPath.section,(long)indexPath.row];

    [self performSegueWithIdentifier:@"2d" sender:self];
}
 //----edit----
//默認(rèn)編輯按鈕
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{    
    if ( INSERTTING )
        return UITableViewCellEditingStyleInsert; // need call [tableView setEditing:YES]; to enter editing mode
    else
        return UITableViewCellEditingStyleDelete; // UITableView has built-in swipping gesture.    
//    return UITableViewCellEditingStyleNone;
//    return UITableViewCellEditingStyleDelete;
//    return UITableViewCellEditingStyleInsert;    
}
//是否所有行可編輯
-(bool)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{
    return YES;
}
//打開手勢(shì)編輯
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{

    if ( editingStyle == UITableViewCellEditingStyleDelete ) {
        // delete the row selected
        self.insertedRows --;
        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
} else if ( editingStyle == UITableViewCellEditingStyleInsert ) {
    // insert a row before the row selected
        self.insertedRows ++;
        [tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
    }
}

//移動(dòng)
-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
}

用自定義 Cell 做出任何想要的 Table

圖例:

圖例

制作步驟(方法一):使用. xib

1.新建一個(gè)TableViewCell 對(duì)象


1

2.在 .xib 中 隨便做些什么

2

3.在 .h 文件中做接口,并關(guān)聯(lián)到. xib 文件

3

4.在主 ViewController 中import 入TableViewCell.h

5.在 viewDidLoad 中加入

     [self.tableView registerNib:[UINib nibWithNibName:kTableCellNibName bundle:nil] forCellReuseIdentifier:kCellIdentifier];

6.在ViewController中加入

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

    TableViewCell *cell = (TableViewCell *)[self.tableView dequeueReusableCellWithIdentifier:kCellIdentifier forIndexPath:indexPath];

7.賦值 (好像在 cell.m 中也行吧)

    cell.lbClassName.text = classname.name;
    cell.lbClassID.text = classname.classId;

8.完成!!

制作步驟(方法二):使用 Prototype Cell

步驟差不多,只是直接在 MainView 中畫出 Cell, 感覺可視化程度較高些.


UIRefreshControl

圖例

制作步驟:

  1. 選擇相關(guān)的 View
1

2.開啟refreshControl選項(xiàng)

2

3.在ViewController 中加入響應(yīng)事件

- (IBAction)refreshing:(id)sender {
    //加入自定義響應(yīng)事件

    //刷新
    [self.refreshControl endRefreshing];
    [self.tableView reloadData];
}


[self.tableView registerNib:[UINib nibWithNibName:kTableCellNibName bundle:nil] forCellReuseIdentifier:kCellIdentifier];

4.完成撒花~~

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市良哲,隨后出現(xiàn)的幾起案子盛卡,更是在濱河造成了極大的恐慌,老刑警劉巖筑凫,帶你破解...
    沈念sama閱讀 212,080評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件窟扑,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡漏健,警方通過查閱死者的電腦和手機(jī)嚎货,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,422評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蔫浆,“玉大人殖属,你說我怎么就攤上這事⊥呤ⅲ” “怎么了洗显?”我有些...
    開封第一講書人閱讀 157,630評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)原环。 經(jīng)常有香客問我挠唆,道長(zhǎng),這世上最難降的妖魔是什么嘱吗? 我笑而不...
    開封第一講書人閱讀 56,554評(píng)論 1 284
  • 正文 為了忘掉前任玄组,我火速辦了婚禮,結(jié)果婚禮上谒麦,老公的妹妹穿的比我還像新娘俄讹。我一直安慰自己,他們只是感情好绕德,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,662評(píng)論 6 386
  • 文/花漫 我一把揭開白布患膛。 她就那樣靜靜地躺著,像睡著了一般耻蛇。 火紅的嫁衣襯著肌膚如雪踪蹬。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,856評(píng)論 1 290
  • 那天臣咖,我揣著相機(jī)與錄音跃捣,去河邊找鬼。 笑死亡哄,一個(gè)胖子當(dāng)著我的面吹牛枝缔,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播蚊惯,決...
    沈念sama閱讀 39,014評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼愿卸,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了截型?” 一聲冷哼從身側(cè)響起趴荸,我...
    開封第一講書人閱讀 37,752評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎宦焦,沒想到半個(gè)月后发钝,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,212評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡波闹,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,541評(píng)論 2 327
  • 正文 我和宋清朗相戀三年酝豪,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片精堕。...
    茶點(diǎn)故事閱讀 38,687評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡孵淘,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出歹篓,到底是詐尸還是另有隱情瘫证,我是刑警寧澤,帶...
    沈念sama閱讀 34,347評(píng)論 4 331
  • 正文 年R本政府宣布庄撮,位于F島的核電站背捌,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏洞斯。R本人自食惡果不足惜毡庆,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,973評(píng)論 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望烙如。 院中可真熱鬧扭仁,春花似錦、人聲如沸厅翔。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,777評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽甸昏。三九已至顽分,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間缸沃,已是汗流浹背检盼。 一陣腳步聲響...
    開封第一講書人閱讀 32,006評(píng)論 1 266
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留貌亭,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,406評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像恕酸,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子义矛,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,576評(píng)論 2 349

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