| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // VipViewController.m
- // file_picker
- //
- // Created by Drew on 2019/5/24.
- //
- #import "VipViewController.h"
- @interface VipViewController ()
- @end
- @implementation VipViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.navigationController.navigationBar.translucent = NO;
- self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"关闭" style:UIBarButtonItemStylePlain target:self action:@selector(close)];
- }
- - (void)close {
- [self.navigationController dismissViewControllerAnimated:YES completion:nil];
- }
- /*
- #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.
- }
- */
- @end
|