-
Notifications
You must be signed in to change notification settings - Fork 0
/
PLBaseRewardsViewController.m
45 lines (37 loc) · 1.1 KB
/
PLBaseRewardsViewController.m
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
40
41
42
43
44
45
//
// PLBaseRewardsViewController.m
// Plate
//
// Created by emileleon on 12/6/13.
// Copyright (c) 2013 Plate SF. All rights reserved.
//
#import "PLBaseRewardsViewController.h"
#import "PLRewardsViewController.h"
@interface PLBaseRewardsViewController ()
@end
@implementation PLBaseRewardsViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
UITabBarItem *tbi = [self tabBarItem];
[tbi setTitle:@"Rewards"];
[[self view] setBackgroundColor:[UIColor purpleColor]];
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
[self pushViewController:[[PLRewardsViewController alloc] init] animated:YES];
self.navigationBar.barStyle = UIBarStyleBlackTranslucent;
self.navigationBar.tintColor = [UIColor whiteColor];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end