iOS应用开发实战(14-17)-TableView

这门课 最麻烦 实用 的组件来了。。。
这个组件的学习分了四个课时,基本上占用了第三周的全部课程,而第三周的作业基本就是TableView的使用。。Fighting!

要素

  1. 数据集的输入(data source)
  2. 每行数据的显示 (view factiory(row data))
  3. 操作(event handler)
    1.点击
    2.调整顺序
    3.增删改

OC中的实现

结构.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的重复使用和Identifier
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];//可重用标志
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----
//默认编辑按钮
-(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;
}
//打开手势编辑
-(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];
    }
}

//移动
-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath{
}

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

图例:

图例

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

1.新建一个TableViewCell 对象


1

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

2

3.在 .h 文件中做接口,并关联到. 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. 选择相关的 View
1

2.开启refreshControl选项

2

3.在ViewController 中加入响应事件

- (IBAction)refreshing:(id)sender {
    //加入自定义响应事件

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


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

4.完成撒花~~

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容