IOS开发---菜鸟学习之路--(十七)-利用UITableView实现个人信息界面

简介: 首先来看下我们要实现的效果 需要实现这样的效果 然后我们开始动手吧。 首先选择添加一个新的ViewController 然后打开XIB文件,添加一UITableView 并将样式设置为分组 同时将按住CONTROL 链接dataSource与delegate 接着修改.

首先来看下我们要实现的效果

需要实现这样的效果

然后我们开始动手吧。

首先选择添加一个新的ViewController

然后打开XIB文件,添加一UITableView 并将样式设置为分组

同时将按住CONTROL 链接dataSource与delegate

接着修改.H文件,具体代码如下

 1 #import <UIKit/UIKit.h>
 2 
 3 @interface GRXXViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
 4 {
 5     NSString *name;
 6     NSString *uid;
 7     NSString *sex;
 8     NSString *address;
 9     NSString *gxqm;
10 }
11 @property(nonatomic,retain) NSString *name;
12 @property(nonatomic,retain) NSString *uid;
13 @property(nonatomic,retain) NSString *sex;
14 @property(nonatomic,retain) NSString *address;
15 @property(nonatomic,retain) NSString *gxqm;
16 @end
GRXXViewController.h

然后我们还需要自定义一个CELL来显示相关的样式

具体样式如下

并修改.h文件和.m文件 ,同时将两个label 与代码进行绑定

 1 #import <UIKit/UIKit.h>
 2 
 3 @interface infoCell : UITableViewCell
 4 {
 5     UILabel *contentlabel;
 6     UILabel *titilelabel;
 7 }
 8 @property(nonatomic,retain) IBOutlet UILabel *contentlabel;
 9 @property(nonatomic,retain) IBOutlet    UILabel *titilelabel;
10 @end
infoCell.h
 1 #import "infoCell.h"
 2 
 3 @implementation infoCell
 4 @synthesize contentlabel;
 5 @synthesize titilelabel;
 6 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
 7 {
 8     self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
 9     if (self) {
10         // Initialization code
11     }
12     return self;
13 }
14 
15 - (void)setSelected:(BOOL)selected animated:(BOOL)animated
16 {
17     [super setSelected:selected animated:animated];
18 
19     // Configure the view for the selected state
20 }
21 
22 @end
infoCell.m

 

 

然后 选择GRXXViewController.m 文件  

完成 

//定义分组数

-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView

 

//定义分组行数

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

 

//设置分组行头

-(NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

 

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

这几个方法

直接上代码

  1 #import "GRXXViewController.h"
  2 #import "infoCell.h"
  3 @interface GRXXViewController ()
  4 
  5 @end
  6 
  7 @implementation GRXXViewController
  8 @synthesize name;
  9 @synthesize gxqm;
 10 @synthesize sex;
 11 @synthesize uid;
 12 @synthesize address;
 13 - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
 14 {
 15     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
 16     if (self) {
 17         // Custom initialization
 18     }
 19     return self;
 20 }
 21 
 22 - (void)viewDidLoad
 23 {
 24     name=@"请输入中文名";
 25     uid=@"myzhanghao";
 26     sex=@"";
 27     address=@"浙江温州";
 28     gxqm=@"IOS开发中";
 29     [super viewDidLoad];
 30     // Do any additional setup after loading the view from its nib.
 31 }
 32 
 33 - (void)didReceiveMemoryWarning
 34 {
 35     [super didReceiveMemoryWarning];
 36     // Dispose of any resources that can be recreated.
 37 }
 38 #pragma mark -
 39 #pragma mark Table View Data Source Methods
 40 //定义分组数
 41 -(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView{
 42     return 3;
 43 }
 44 //定义分组行数
 45 -(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
 46     if(section==0)
 47         return 2;
 48     else if(section==1)
 49         return 3;
 50     else
 51         return 1;
 52 }
 53 //设置分组行头
 54 -(NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
 55 //    if(section==0)
 56 //        return @"基本信息";
 57 //    else if(section==1)
 58 //        return @"总计";
 59 //    else if(section==2)
 60 //        return @"与互";
 61 //    else if(section==3)
 62 //        return @"查询";
 63 //    else
 64         return @"";
 65 }
 66 -(UITableViewCell*) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 67 {
 68     if([indexPath section]==0)
 69     {
 70         if([indexPath row]==0)
 71         {
 72             static NSString *modifyinfoTableIdentifier=@"LookInfoModelCell";
 73             infoCell *cell= (infoCell *)[tableView dequeueReusableCellWithIdentifier:modifyinfoTableIdentifier];
 74             if(cell==nil){
 75                 NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"infoCell" owner:self options:nil];
 76                 cell = [nib objectAtIndex:0];
 77             }
 78             cell.contentlabel.text=name;
 79             cell.titilelabel.text=@"名字:";
 80             return cell;
 81         }
 82         else
 83         {
 84             static NSString *modifyinfoTableIdentifier=@"LookInfoModelCell";
 85             infoCell *cell= (infoCell *)[tableView dequeueReusableCellWithIdentifier:modifyinfoTableIdentifier];
 86             if(cell==nil){
 87                 NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"infoCell" owner:self options:nil];
 88                 cell = [nib objectAtIndex:0];
 89             }
 90             cell.contentlabel.text=uid;
 91             cell.titilelabel.text=@"我的账号:";
 92             return cell;
 93         }
 94      }
 95     else if([indexPath section]==1)
 96     {
 97         if([indexPath row]==0)
 98         {
 99             static NSString *modifyinfoTableIdentifier=@"LookInfoModelCell";
100             infoCell *cell= (infoCell *)[tableView dequeueReusableCellWithIdentifier:modifyinfoTableIdentifier];
101             if(cell==nil){
102                 NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"infoCell" owner:self options:nil];
103                 cell = [nib objectAtIndex:0];
104             }
105             cell.contentlabel.text=sex;
106             cell.titilelabel.text=@"性别:";
107             return cell;
108         }
109         else if([indexPath row]==1)
110         {
111             static NSString *modifyinfoTableIdentifier=@"LookInfoModelCell";
112             infoCell *cell= (infoCell *)[tableView dequeueReusableCellWithIdentifier:modifyinfoTableIdentifier];
113             if(cell==nil){
114                 NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"infoCell" owner:self options:nil];
115                 cell = [nib objectAtIndex:0];
116             }
117             cell.contentlabel.text=address;
118             cell.titilelabel.text=@"地区:";
119             return cell;
120         }
121         else
122         {
123             static NSString *modifyinfoTableIdentifier=@"LookInfoModelCell";
124             infoCell *cell= (infoCell *)[tableView dequeueReusableCellWithIdentifier:modifyinfoTableIdentifier];
125             if(cell==nil){
126                 NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"infoCell" owner:self options:nil];
127                 cell = [nib objectAtIndex:0];
128             }
129             cell.contentlabel.text=gxqm;
130             cell.titilelabel.text=@"个性签名:";
131             return cell;
132         }
133         
134     }
135     else
136     {
137         static NSString *modifyinfoTableIdentifier=@"LookInfoModelCell";
138         infoCell *cell= (infoCell *)[tableView dequeueReusableCellWithIdentifier:modifyinfoTableIdentifier];
139         if(cell==nil){
140             NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"infoCell" owner:self options:nil];
141             cell = [nib objectAtIndex:0];
142         }
143         cell.contentlabel.text=@"展示";
144         cell.titilelabel.text=@"腾讯微博:";
145         return cell;
146 
147     }
148     
149 }@end
GRXXViewController.m

最后就完成拉

如果还想实现其他效果的 话 就自定义相关的CELL样式 同时在不同条件下使用不同样式就可以了,具体的请参照如何实心新闻页面那一章

 

目录
相关文章
|
23天前
|
iOS开发 开发者 MacOS
深入探索iOS开发中的SwiftUI框架
【10月更文挑战第21天】 本文将带领读者深入了解Apple最新推出的SwiftUI框架,这一革命性的用户界面构建工具为iOS开发者提供了一种声明式、高效且直观的方式来创建复杂的用户界面。通过分析SwiftUI的核心概念、主要特性以及在实际项目中的应用示例,我们将展示如何利用SwiftUI简化UI代码,提高开发效率,并保持应用程序的高性能和响应性。无论你是iOS开发的新手还是有经验的开发者,本文都将为你提供宝贵的见解和实用的指导。
117 66
|
9天前
|
存储 监控 API
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
|
1月前
|
开发框架 Android开发 iOS开发
安卓与iOS开发中的跨平台策略:一次编码,多平台部署
在移动应用开发的广阔天地中,安卓和iOS两大阵营各占一方。随着技术的发展,跨平台开发框架应运而生,它们承诺着“一次编码,到处运行”的便捷。本文将深入探讨跨平台开发的现状、挑战以及未来趋势,同时通过代码示例揭示跨平台工具的实际运用。
|
1月前
|
Java 调度 Android开发
安卓与iOS开发中的线程管理差异解析
在移动应用开发的广阔天地中,安卓和iOS两大平台各自拥有独特的魅力。如同东西方文化的差异,它们在处理多线程任务时也展现出不同的哲学。本文将带你穿梭于这两个平台之间,比较它们在线程管理上的核心理念、实现方式及性能考量,助你成为跨平台的编程高手。
|
2月前
|
存储 前端开发 Swift
探索iOS开发:从新手到专家的旅程
本文将带您领略iOS开发的奇妙之旅,从基础概念的理解到高级技巧的掌握,逐步深入iOS的世界。文章不仅分享技术知识,还鼓励读者在编程之路上保持好奇心和创新精神,实现个人成长与技术突破。
|
Java iOS开发
IOS学习笔记十三(使用类别实现非正式协议)
IOS学习笔记十三(使用类别实现非正式协议)
130 0
|
2月前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
2月前
|
安全 IDE Swift
探索iOS开发之旅:从初学者到专家
在这篇文章中,我们将一起踏上iOS开发的旅程,从基础概念的理解到深入掌握核心技术。无论你是编程新手还是希望提升技能的开发者,这里都有你需要的指南和启示。我们将通过实际案例和代码示例,展示如何构建一个功能齐全的iOS应用。准备好了吗?让我们一起开始吧!
|
2月前
|
安全 Swift iOS开发
Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法
本文深入探讨了 Swift 与 UIKit 在 iOS 应用界面开发中的关键技术和实践方法。Swift 以其简洁、高效和类型安全的特点,结合 UIKit 丰富的组件和功能,为开发者提供了强大的工具。文章从 Swift 的语法优势、类型安全、编程模型以及与 UIKit 的集成,到 UIKit 的主要组件和功能,再到构建界面的实践技巧和实际案例分析,全面介绍了如何利用这些技术创建高质量的用户界面。
35 2
|
2月前
|
安全 数据处理 Swift
深入探索iOS开发中的Swift语言特性
本文旨在为开发者提供对Swift语言在iOS平台开发的深度理解,涵盖从基础语法到高级特性的全面分析。通过具体案例和代码示例,揭示Swift如何简化编程过程、提高代码效率,并促进iOS应用的创新。文章不仅适合初学者作为入门指南,也适合有经验的开发者深化对Swift语言的认识。
60 9