再接再厉
下面就要开始敲代码啦!
先建一个分组,恩,为了美观。
<br />
RootViewController
选中NEW GROUP
我给它命名为GarbageCenter,后面的全局类我都会扔在这里,垃圾回收中心!
按下Command+N,制造一个新朋友Cocoa touch class。并给它一个名字:RootViewController,并让其继承UIViewController。
不打算用XIB开发,所以就把钩去了就好了!
Language默认Objective-C就好了。
恭喜你,第一个类这样就创建完成了!
这时候按下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 />
最后
暂时就到这里吧,下篇就到了事件监听了。