第一个项目之三--UITableView

再接再厉


下面就要开始敲代码啦!
先建一个分组,恩,为了美观。
<br />

RootViewController



选中NEW GROUP
我给它命名为GarbageCenter,后面的全局类我都会扔在这里,垃圾回收中心!
按下Command+N,制造一个新朋友Cocoa touch class。并给它一个名字:RootViewController,并让其继承UIViewController。

Paste_Image.png

不打算用XIB开发,所以就把钩去了就好了!
Language默认Objective-C就好了。

Paste_Image.png

恭喜你,第一个类这样就创建完成了!
这时候按下Command+R,项目就可以跑起来了。不过到目前为止,项目还是会以StoryBoard的方式开启,那刚才新建的类要怎么用呢?不用急,慢慢来,耐心。
<br />

代码方式Launch


我们重新回到AppDelegate里面。前面说过,在AppDelegate里面有个方法:didFinishLaunchingWithOptions:,它是在APP启动完毕后执行的方法。
而在APP启动之后,我们当然是需要让APP的窗口展示到屏幕上,此时我们就要这么做:

#import "RootViewController.h"
//先导入刚才新建的类
...
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.

    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    //将窗口的大小设为和屏幕大小一样

    self.window.backgroundColor = [UIColor grayColor];
    //将窗口的背景颜色更改为灰色

    RootViewController *instance_rootView = [[RootViewController alloc]init];
    //初始化RootViewController

    [instance_rootView.view setFrame:self.window.frame];
    //设置RootViewController的大小和window的相同

    self.window.rootViewController = instance_rootView;
    //将RootViewController设置为根视图控制器

    [self.window makeKeyAndVisible];
    //然后设置窗口为可见

    return YES;
}

这是再Run项目之后,就不再是以StoryBoard的形式启动了。进入APP之后,看到的就是RootViewController的一片白茫茫。下面就到RootViewController了。

测试菜单--列表


这个项目的目的是为了集成一大堆测试内容而建的,所以首页就应该做成一个菜单。而在UIKit里面,就有一个很适合的类库,UITableView,它几乎穿越了整个APP的开发周期,到处都到得到他。
我们先来看看例子。

#import "RootViewController.h"

//拓展了两个协议,UITableViewDataSource和UITableViewDelegate
@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>

//初始化一个UITableView
@property (nonatomic, strong) UITableView *view_table;

@end

@implementation RootViewController

//页面加载的时候会执行这个方法
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    [self initRootView]; //调用自定义初始化RootView方法
    
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

//初始化RootView里面的内容
- (void)initRootView {
    self.view.backgroundColor = [UIColor colorWithRed:225 / 255.0 green:225 / 255.0 blue:225 / 255.0 alpha:1]; //设置背景颜色
    
    self.view_table = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped]; //初始化UITableView,并设置起大小和RootView的大小一样,同时将UITableVIew的样式改为分组样式
    self.view_table.delegate = self; 
    self.view_table.dataSource = self;
    //设置UITableView的代理和数据源为RootView    

    [self.view addSubview:self.view_table]; //将UITableView添加到RootView上显示
}

//该方法适用于UITableViewStyleGrouped,返回分组数
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}

//该方法会返回每个组数里面包含的行数
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 1;
}

//返回每行的高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 45;
}

//返回每行的对象
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *cell_temp = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:[NSString stringWithFormat:@"cell%ld0%ld", indexPath.section, indexPath.row]];
    cell_temp.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    return cell_temp;
}

@end
运行结果

这样,一个只有单行单组的表格视图就完成了!大功告成。
因为是个菜单嘛,只有一行怎么能行呢?先加上目录两个字吧!

- (void)initTableHeaderView{
    UIView *view_header = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 100)];
    
    UILabel *lb_menu = [[UILabel alloc]initWithFrame:view_header.frame];
    lb_menu.backgroundColor = [UIColor colorWithRed:225 / 255.0 green:225 / 255.0 blue:225 / 255.0 alpha:1];
    lb_menu.textAlignment = NSTextAlignmentCenter;
    lb_menu.font = [UIFont fontWithName:@"Arial" size:16.0];
    lb_menu.text = @"目 录";
    
    [view_header addSubview:lb_menu];
    
    self.view_table.tableHeaderView = view_header;
}

然后我们就会看到这个效果:

运行结果

下面就是将这个首页,稍微打包打包,让后面添加新的分组和行数据时能够方便点。
改动后的代码:

#import "RootViewController.h"

@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>

@property (nonatomic, strong) UITableView *view_table;

@property (nonatomic, strong) NSArray *array_section;
@property (nonatomic, strong) NSArray *array_row;

@end

@implementation RootViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    [self initRootView];
    
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

- (void)initRootView {
    self.view.backgroundColor = [UIColor colorWithRed:225 / 255.0 green:225 / 255.0 blue:225 / 255.0 alpha:1];
    
    self.view_table = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStyleGrouped];
    self.view_table.delegate = self;
    self.view_table.dataSource = self;
    
    [self.view addSubview:self.view_table];
    
    [self initTableHeaderView];
    [self initData];
}

- (void)initTableHeaderView{
    UIView *view_header = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 100)];
    
    UILabel *lb_menu = [[UILabel alloc]initWithFrame:view_header.frame];
    lb_menu.backgroundColor = [UIColor colorWithRed:225 / 255.0 green:225 / 255.0 blue:225 / 255.0 alpha:1];
    lb_menu.textAlignment = NSTextAlignmentCenter;
    lb_menu.font = [UIFont fontWithName:@"Arial" size:16.0];
    lb_menu.text = @"目 录";
    
    [view_header addSubview:lb_menu];
    
    self.view_table.tableHeaderView = view_header;
}

- (void)initData{
    self.array_section = [NSArray arrayWithObjects:@"第一章", nil];
    
    self.array_row = [NSArray arrayWithObjects:
                      [NSArray arrayWithObjects:@"第一节", @"第二节", nil],
                      nil];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return [self.array_section count];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    switch (section) {
        case 0:
            return [self.array_row[section] count];
            break;
            
        default:
            return 0;
            break;
    }
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    return 45;
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
    return self.array_section[section];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *cell_temp = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:[NSString stringWithFormat:@"cell%ld0%ld", indexPath.section, indexPath.row]];
    cell_temp.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    cell_temp.selectionStyle = UITableViewCellSelectionStyleNone;
    
    cell_temp.textLabel.text = [self.array_row[indexPath.section] objectAtIndex:indexPath.row];
    
    return cell_temp;
}

@end

现在效果就是这样了:

运行结果

<br />

最后


暂时就到这里吧,下篇就到了事件监听了。

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

推荐阅读更多精彩内容