summaryrefslogtreecommitdiff
path: root/Juick/ViewControllers/NewPostViewController.m
blob: 318de4e6cb1ed3fec50e8bf1cc23c85331d798c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
//  NewPostViewController.m
//  Juick
//
//  Created by Vitaly Takmazov on 07.11.13.
//  Copyright (c) 2013 com.juick. All rights reserved.
//

#import "NewPostViewController.h"
#import "ColorScheme.h"

@interface NewPostViewController ()

@property (nonatomic, assign) BOOL didSetupConstraints;

@end

@implementation NewPostViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.navigationController.visibleViewController.title = @"Post";
    self.view.backgroundColor = [ColorScheme mainBackground];
	self.navigationController.visibleViewController.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel
                                                                                          target:self action:@selector(cancelCompose)];
    self.navigationController.visibleViewController.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd
                                                                                           target:self action:@selector(doneCompose)];    
}

- (void) cancelCompose {
    [self.navigationController.visibleViewController.navigationController popViewControllerAnimated:YES];
}

- (void) doneCompose {
    [self.navigationController.visibleViewController.navigationController popToRootViewControllerAnimated:YES];
}

@end