Skip to content

Commit 52433c3

Browse files
committed
...
1 parent e4a53dd commit 52433c3

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

Coding_iOS/Controllers/ProjectViewController.m

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,8 @@ - (void)navRightBtnClicked{
503503
[self.navigationController pushViewController:vc animated:YES];
504504
}
505505
break;
506-
case ProjectViewTypeMembers:{
506+
case ProjectViewTypeMembers:
507+
{
507508
__weak typeof(self) weakSelf = self;
508509
AddUserViewController *vc = [[AddUserViewController alloc] init];
509510
vc.curProject = self.myProject;
@@ -519,7 +520,8 @@ - (void)navRightBtnClicked{
519520
[self.navigationController pushViewController:vc animated:YES];
520521
}
521522
break;
522-
case ProjectViewTypeFiles:{
523+
case ProjectViewTypeFiles:
524+
{
523525
//新建文件夹
524526
__weak typeof(self) weakSelf = self;
525527
[SettingTextViewController showSettingFolderNameVCFromVC:self withTitle:@"新建文件夹" textValue:nil type:SettingTypeNewFolderName doneBlock:^(NSString *textValue) {
@@ -537,7 +539,8 @@ - (void)navRightBtnClicked{
537539

538540
}
539541
break;
540-
case ProjectViewTypeCodes:{
542+
case ProjectViewTypeCodes:
543+
{
541544
//代码提交记录
542545
ProjectCommitsViewController *vc = [ProjectCommitsViewController new];
543546
vc.curProject = self.myProject;
@@ -548,7 +551,6 @@ - (void)navRightBtnClicked{
548551
default:
549552
break;
550553
}
551-
552554
}
553555

554556

0 commit comments

Comments
 (0)