iOS开发-UITableView常用方法

简介:

UITableView常用来展示数据,类似于Android中的ListView,相对于Android中的ListView而言,UITableView的实现是非常简单,继承UITableViewDataSource,UITableViewDelegate然后根据需要是实现对应的方法即可。 UITableView有两个默认的内置风格,Plain和Grouped,Plain表明表格视图自身没有真正地在你自己实际地提供任何外观之前提供很多的外观,大部分情况下,它会做的唯一的事情是它会给你这些header和footer。Grouped表格视图是UIKit提供的分组风格。风格的话如果有特别的需求,还可以自定义分组的风格。

页面布局

页面比较简单,一个简单UITableView:

 

头文件中的不需要声明,需要实现一下协议:

1
2
3
@interface  ViewController : UIViewController <UITableViewDataSource,UITableViewDelegate>
 
@end

Demo实现

声明三个数据用来展示数据: 

1
2
3
4
5
6
7
@interface  ViewController ()
{
     NSArray  *channelArr;
     NSMutableArray  *filmArr;
     NSMutableArray  *tvArr;
}
@end

 初始化数据:

1
2
3
4
5
6
7
- ( void )viewDidLoad {
     [ super  viewDidLoad];
     // Do any additional setup after loading the view, typically from a nib.
     channelArr=[[ NSArray  alloc] initWithObjects:@ "电影" ,@ "电视剧" , nil ];
     filmArr=[[ NSMutableArray  alloc] initWithObjects:@ "智取威虎山" ,@ "一步之遥" ,@ "匆匆那年" ,@ "北京爱情故事" , nil ];
     tvArr=[[ NSMutableArray  alloc] initWithObjects:@ "何以笙箫默" ,@ "锋刃" ,@ "陆小凤与花满楼" ,@ "武媚娘传奇" , nil ];
}

 设置分组的组数:

1
2
3
4
- ( NSInteger )numberOfSectionsInTableView:(UITableView *)tableView{
     NSLog (@ "%lu" ,(unsigned  long )channelArr.count);
     return  [channelArr count];
}

 设置分组的标题:

1
2
3
- ( NSString  *)tableView:(UITableView *)tableView titleForHeaderInSection:( NSInteger )section{
     return  [channelArr objectAtIndex:section];
}

设置每个分组下内容的个数:

1
2
3
4
5
6
7
8
9
10
11
12
- ( NSInteger )tableView:(UITableView *)tableView numberOfRowsInSection:( NSInteger )section{
     NSInteger  count=0;
     switch  (section) {
         case  0:
             count=[filmArr count];
             break ;
         case  1:
             count=[tvArr count];
             break ;
     }
     return  count;
}

设置每个分组下的具体内容:

1
2
3
4
5
6
7
8
9
10
11
12
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:( NSIndexPath  *)indexPath{
     UITableViewCell *cell =[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier: nil ];
     switch  (indexPath.section) {
         case  0:
             [cell.textLabel setText:[filmArr objectAtIndex:indexPath.row]];
             break ;
         case  1:
             [cell.textLabel setText:[tvArr objectAtIndex:indexPath.row]];
             break ;
     }
     return  cell;
}

 设置分组标题和底部的高度:

1
2
3
4
5
6
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:( NSInteger )section{
     return  40;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:( NSInteger )section{
     return  0;
}

 设置点击事件:

1
2
3
4
5
6
7
8
9
10
11
12
13
- ( void )tableView:(UITableView *)tableView didSelectRowAtIndexPath:( NSIndexPath  *)indexPath{
     NSString  *content;
     switch  (indexPath.section) {
         case  0:
             content=[ NSString  stringWithFormat:@ "%@-%@" ,channelArr[0],[filmArr objectAtIndex:indexPath.row]];
             break ;
         case  1:
                content=[ NSString  stringWithFormat:@ "%@-%@" ,channelArr[1],[tvArr objectAtIndex:indexPath.row]];
             break ;
     }
     UIAlertView *alterView=[[UIAlertView alloc] initWithTitle:@ "当前位置:"  message:content delegate: self  cancelButtonTitle:@ "确定"  otherButtonTitles: nil ];
     [alterView show];
}

 最终效果:

 源代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
//  ViewController.m
//  TableView
//http://www.cnblogs.com/xiaofeixiang/
//  Created by keso on 15/1/24.
//  Copyright (c) 2015年 keso. All rights reserved.
//
 
#import "ViewController.h"
 
@interface  ViewController ()
{
     NSArray  *channelArr;
     NSMutableArray  *filmArr;
     NSMutableArray  *tvArr;
}
@end
 
@implementation  ViewController
 
- ( void )viewDidLoad {
     [ super  viewDidLoad];
     // Do any additional setup after loading the view, typically from a nib.
     channelArr=[[ NSArray  alloc] initWithObjects:@ "电影" ,@ "电视剧" , nil ];
     filmArr=[[ NSMutableArray  alloc] initWithObjects:@ "智取威虎山" ,@ "一步之遥" ,@ "匆匆那年" ,@ "北京爱情故事" , nil ];
     tvArr=[[ NSMutableArray  alloc] initWithObjects:@ "何以笙箫默" ,@ "锋刃" ,@ "陆小凤与花满楼" ,@ "武媚娘传奇" , nil ];
}
//设置分组的组数
- ( NSInteger )numberOfSectionsInTableView:(UITableView *)tableView{
     NSLog (@ "%lu" ,(unsigned  long )channelArr.count);
     return  [channelArr count];
}
//设置分组的标题
- ( NSString  *)tableView:(UITableView *)tableView titleForHeaderInSection:( NSInteger )section{
     return  [channelArr objectAtIndex:section];
}
//- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
//    return @"我是底部";
//}
//设置每个分组的个数
- ( NSInteger )tableView:(UITableView *)tableView numberOfRowsInSection:( NSInteger )section{
     NSInteger  count=0;
     switch  (section) {
         case  0:
             count=[filmArr count];
             break ;
         case  1:
             count=[tvArr count];
             break ;
     }
     return  count;
}
//设置分组中具体的内容
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:( NSIndexPath  *)indexPath{
     UITableViewCell *cell =[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier: nil ];
     switch  (indexPath.section) {
         case  0:
             [cell.textLabel setText:[filmArr objectAtIndex:indexPath.row]];
             break ;
         case  1:
             [cell.textLabel setText:[tvArr objectAtIndex:indexPath.row]];
             break ;
     }
     return  cell;
}
 
//分组标题的行高
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:( NSInteger )section{
     return  40;
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:( NSInteger )section{
     return  0;
}
//选中点击事件
- ( void )tableView:(UITableView *)tableView didSelectRowAtIndexPath:( NSIndexPath  *)indexPath{
     NSString  *content;
     switch  (indexPath.section) {
         case  0:
             content=[ NSString  stringWithFormat:@ "%@-%@" ,channelArr[0],[filmArr objectAtIndex:indexPath.row]];
             break ;
         case  1:
                content=[ NSString  stringWithFormat:@ "%@-%@" ,channelArr[1],[tvArr objectAtIndex:indexPath.row]];
             break ;
     }
     UIAlertView *alterView=[[UIAlertView alloc] initWithTitle:@ "当前位置:"  message:content delegate: self  cancelButtonTitle:@ "确定"  otherButtonTitles: nil ];
     [alterView show];
}
- ( void )didReceiveMemoryWarning {
     [ super  didReceiveMemoryWarning];
     // Dispose of any resources that can be recreated.
}
 
@end
本文转自Fly_Elephant博客园博客,原文链接:http://www.cnblogs.com/xiaofeixiang/p/4246563.html,如需转载请自行联系原作者
相关文章
|
2月前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
19天前
|
iOS开发 开发者 MacOS
深入探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】 本文将带领读者深入了解Apple最新推出的SwiftUI框架,这一革命性的用户界面构建工具为iOS开发者提供了一种声明式、高效且直观的方式来创建复杂的用户界面。通过分析SwiftUI的核心概念、主要特性以及在实际项目中的应用示例,我们将展示如何利用SwiftUI简化UI代码,提高开发效率,并保持应用程序的高性能和响应性。无论你是iOS开发的新手还是有经验的开发者,本文都将为你提供宝贵的见解和实用的指导。
111 66
|
5天前
|
存储 监控 API
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
|
29天前
|
开发框架 Android开发 iOS开发
安卓与iOS开发中的跨平台策略:一次编码,多平台部署
在移动应用开发的广阔天地中,安卓和iOS两大阵营各占一方。随着技术的发展,跨平台开发框架应运而生,它们承诺着“一次编码,到处运行”的便捷。本文将深入探讨跨平台开发的现状、挑战以及未来趋势,同时通过代码示例揭示跨平台工具的实际运用。
|
1月前
|
Java 调度 Android开发
安卓与iOS开发中的线程管理差异解析
在移动应用开发的广阔天地中,安卓和iOS两大平台各自拥有独特的魅力。如同东西方文化的差异,它们在处理多线程任务时也展现出不同的哲学。本文将带你穿梭于这两个平台之间,比较它们在线程管理上的核心理念、实现方式及性能考量,助你成为跨平台的编程高手。
|
2月前
|
存储 前端开发 Swift
探索iOS开发:从新手到专家的旅程
本文将带您领略iOS开发的奇妙之旅,从基础概念的理解到高级技巧的掌握,逐步深入iOS的世界。文章不仅分享技术知识,还鼓励读者在编程之路上保持好奇心和创新精神,实现个人成长与技术突破。
|
2月前
|
安全 IDE Swift
探索iOS开发之旅:从初学者到专家
在这篇文章中,我们将一起踏上iOS开发的旅程,从基础概念的理解到深入掌握核心技术。无论你是编程新手还是希望提升技能的开发者,这里都有你需要的指南和启示。我们将通过实际案例和代码示例,展示如何构建一个功能齐全的iOS应用。准备好了吗?让我们一起开始吧!
|
C语言 iOS开发
iOS(CGGeometry)几何类方法总结
iOS(CGGeometry)几何类方法总结
179 0
|
iOS开发 C语言
IOS(CGGeometry)几何类方法总结
<div class="BlogAbstracts" style="margin:0px; padding:10px; color:rgb(51,51,51); font-size:14px; background-color:rgb(244,247,249); line-height:21.600000381469727px; font-family:Verdana,sans-serif
1746 0
|
2月前
|
安全 Swift iOS开发
Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法
本文深入探讨了 Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法。Swift 以其简洁、高效和类型安全的特点,结合 UIKit 丰富的组件和功能,为开发者提供了强大的工具。文章从 Swift 的语法优势、类型安全、编程模型以及与 UIKit 的集成,到 UIKit 的主要组件和功能,再到构建界面的实践技巧和实际案例分析,全面介绍了如何利用这些技术创建高质量的用户界面。
34 2