勤之时 - 表示层(二)

从易到难,来看4个功能按钮的实现,这一节讲【设置】相关的功能实现。

功能描述

【设置】View Controller

  • 点击【设置】按钮,以Present的形式显示Setting Controller。
  • 左上角是关闭按钮,点击关闭Setting Controller
  • Setting Controller基于Table View。 上面是【勤之时】的ICON以及一些描述,Table List有3项内容,如图。
  • 底部是一行出品描述字
  • 点击【意见和反馈】Cell跳转至邮件发送。
  • 点击【给我打分】Cell跳转至Apple Store 【勤之时】的下载页面
  • 点击【关于】按钮,Present【关于】页面

【关于】View Controller

  • 中间为一首小诗
  • 中下部有一个【赞赏】按钮,点击跳转至支付宝客户端,进行转账。
  • 【赞赏】按钮下是一串描述文字。
  • 底部是【关闭】按钮,点击返回【设置】页面。

MVC设计考虑:

  • Controller:
    • ILDSettingViewController:主要包含一个TableView,背景设置为虚化的主页面。
    • ILDAboutViewController:About的功能实现,同样,背景为虚化的主页面。
    • 考虑到背景都为虚化的主页面,以及我们后续都需要这个以虚化的主页面为背景的Controller,这边设计一个ILDBaseViewController,作为基类,主要用户虚化的主页面的背景设置。
  • Model:
  • View:
    • ILDSettingViewController 需要 ILDLogoView,来作为Table View的headerView
    • ILDSettingDefaultCell 为 Table View 的自定义Cell。

ILDSettingViewController的编码:

  • settingListTableView的初始化,主要是添加ILDLogoView作为它的HeaderView
1
2
3
4
5
6
7
8
9
10
11
12
13
- (UITableView *)settingListTableView {
if (!_settingListTableView) {
_settingListTableView = [[UITableView alloc] init];;
_settingListTableView.delegate = self;
_settingListTableView.dataSource = self;
_settingListTableView.tableFooterView = [[UIView alloc] init];
_settingListTableView.separatorInset = UIEdgeInsetsMake(0, 12, 0, 12);
_settingListTableView.tableHeaderView = [[ILDLogoView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, ScreenHeight - 128 - 4 * 44)];
[_settingListTableView setBackgroundColor:ClearColor];
}

return _settingListTableView;
}
  • 以及settingListTableView的datasource和delegate
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
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
ILDSettingDefaultCell *defaultCell = [[ILDSettingDefaultCell alloc] init];

if (indexPath.row == 0) {
defaultCell.textLabel.text = @"意见与反馈";
defaultCell.imageView.image = [UIImage imageNamed:@"menu_feedback_26x26_"];
return defaultCell;
} else if (indexPath.row == 1) {
defaultCell.textLabel.text = @"给我打分";
defaultCell.imageView.image = [UIImage imageNamed:@"menu_rate_26x26_"];
return defaultCell;
} else {
defaultCell.textLabel.text = @"关于";
defaultCell.imageView.image = [UIImage imageNamed:@"menu_about_26x26_"];
return defaultCell;
}
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.row == 0) {
NSString *subject = @"勤之时 用户反馈";
NSArray *recipientArray = [NSArray arrayWithObject: @"inspirelife@hotmail.com"];
NSString *body = @"";

NSDictionary *emaidContentDict = [NSDictionary dictionaryWithObjectsAndKeys:
subject, @"subject",
recipientArray, @"recipients",
body, @"body",
nil];

[self sendMailInApp:emaidContentDict];
} else if (indexPath.row == 1){
if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:kAppReviewURL] options:@{} completionHandler:^(BOOL success) {
}];
} else {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:kAppReviewURL]];
}
} else {
ILDAboutViewController *aboutVC = [[ILDAboutViewController alloc] init];
[self presentViewController:aboutVC animated:YES completion:nil];
}
}

ILDAboutViewController的编码:

  • 主要还是布局的问题。除了布局,就是点赞的按钮会跳转到支付宝,向我发起支付
1
2
3
4
5
6
if ([[UIDevice currentDevice].systemVersion floatValue] >= 10.0) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:kPayURL] options:@{} completionHandler:^(BOOL success) {
}];
} else {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:kPayURL]];
}

这个功能是怎么实现的?这里不需要注册额外的什么支付宝开发等等,主要的就是怎么找到这个Schema

1
NSString *const kPayURL = @"alipayqr://platformapi/startapp?saId=10000007&qrcode=HTTPS://QR.ALIPAY.COM/xxxxxxxxxxxxxxxx";

最后一串就是你的支付宝ID对应的二维编码解析得到的结果。你可以打开支付宝,找到自己的二维码,然后Decoder这个二维码,你就会发现HTTPS://QR.ALIPAY.COM/xxxxxxxxxxxxxxxx这一串代码,然后代替上面的就可以了。