39 lines
869 B
Objective-C
Executable File
39 lines
869 B
Objective-C
Executable File
//
|
|
// SJPhotoPickerNavController.m
|
|
// SJPhotoPickerDemo
|
|
//
|
|
// Created by Jaesun on 16/8/22.
|
|
// Copyright © 2016年 S.J. All rights reserved.
|
|
//
|
|
|
|
#import "SJPhotoPickerNavController.h"
|
|
#import "SJPhotoAlbumsController.h"
|
|
#import "SJPhotoPickerMacro.h"
|
|
@interface SJPhotoPickerNavController ()
|
|
|
|
@end
|
|
|
|
@implementation SJPhotoPickerNavController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
|
|
[self.navigationBar setBarTintColor:NAVBAR_CLOOUR];
|
|
[self.navigationBar setTintColor:[UIColor whiteColor]];
|
|
|
|
[self.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];
|
|
|
|
SJPhotoAlbumsController *vc = [[SJPhotoAlbumsController alloc] init];
|
|
vc.title = @"相册";
|
|
[self pushViewController:vc animated:NO];
|
|
|
|
|
|
}
|
|
- (void)didReceiveMemoryWarning {
|
|
[super didReceiveMemoryWarning];
|
|
}
|
|
|
|
|
|
|
|
@end
|