forked from chenyufeng1991/iOS-Oncenote
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master:合并dev,关于App界面设计完成,下面进行修改密码的功能
- Loading branch information
Showing
5 changed files
with
169 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// AboutAppViewController.h | ||
// Oncenote | ||
// | ||
// Created by chenyufeng on 15/11/17. | ||
// Copyright © 2015年 chenyufengweb. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
@interface AboutAppViewController : UIViewController | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// | ||
// AboutAppViewController.m | ||
// Oncenote | ||
// | ||
// Created by chenyufeng on 15/11/17. | ||
// Copyright © 2015年 chenyufengweb. All rights reserved. | ||
// | ||
|
||
#import "AboutAppViewController.h" | ||
#import "AllUtils.h" | ||
|
||
@interface AboutAppViewController () | ||
|
||
@end | ||
|
||
@implementation AboutAppViewController | ||
|
||
- (void)viewDidLoad { | ||
[super viewDidLoad]; | ||
|
||
|
||
} | ||
|
||
|
||
- (IBAction)naviBackButtonPressed:(id)sender { | ||
|
||
[AllUtils jumpToViewController:@"SettingViewController" contextViewController:self handler:nil]; | ||
} | ||
|
||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters