]> git.saurik.com Git - apple/security.git/blob - Keychain/DeviceViewController.m
Security-57740.31.2.tar.gz
[apple/security.git] / Keychain / DeviceViewController.m
1 //
2 // DeviceViewController.m
3 // Security
4 //
5 // Created by john on 11/18/12.
6 //
7 //
8
9 #import "DeviceViewController.h"
10
11 @interface DeviceViewController ()
12
13 @end
14
15 @implementation DeviceViewController
16
17 - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
18 {
19 self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
20 if (self) {
21 // Custom initialization
22 }
23 return self;
24 }
25
26 - (void)viewDidLoad
27 {
28 [super viewDidLoad];
29 // Do any additional setup after loading the view.
30 }
31
32 - (void)didReceiveMemoryWarning
33 {
34 [super didReceiveMemoryWarning];
35 // Dispose of any resources that can be recreated.
36 }
37
38 @end