Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 036b08f

Browse files
committed
修改部分文案
Signed-off-by: Zhiping Yang <[email protected]>
1 parent a482a12 commit 036b08f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

DynamicsDemo/RootViewController.m

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ - (void)viewDidLoad {
3232

3333
_myTableView.tableFooterView = [UIView new];
3434

35-
titleArray = @[@[@"重力",@"碰撞",@"连接",@"弹簧",@"吸附",@"推力"],
36-
@[@"项目一",@"项目二",@"项目三"]];
35+
titleArray = @[@[@"重力 - UIGravityBehavior",@"碰撞 - UICollisionBehavior",
36+
@"连接 - UIAttachmentBehavior",@"弹簧 - UIAttachmentBehavior",
37+
@"吸附 - UISnapBehavior",@"推力 - UIPushBehavior"],
38+
@[@"项目一:串珠",@"简易游戏:消除",@"简易游戏:flappy(待完善)"]];
3739
}
3840

3941
#pragma mark - UITableView Datasource
@@ -62,7 +64,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
6264

6365
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
6466
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 30)];
65-
label.text = section==0?@"基础篇":@"实战篇";
67+
label.text = section==0?@"基础篇":@"实战篇-简易";
6668
label.font = [UIFont boldSystemFontOfSize:20];
6769
label.textColor = [UIColor grayColor];
6870
label.backgroundColor = [[UIColor lightGrayColor] colorWithAlphaComponent:0.4];

demo.png

25.5 KB
Loading

0 commit comments

Comments
 (0)