X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/80e2389990082500d76eb566d4946be3e786c3ef..d8f41ccd20de16f8ebe2ccc84d47bf1cb2b26bbb:/Keychain/DeviceViewController.m diff --git a/Keychain/DeviceViewController.m b/Keychain/DeviceViewController.m new file mode 100644 index 00000000..e893ed50 --- /dev/null +++ b/Keychain/DeviceViewController.m @@ -0,0 +1,38 @@ +// +// DeviceViewController.m +// Security +// +// Created by john on 11/18/12. +// +// + +#import "DeviceViewController.h" + +@interface DeviceViewController () + +@end + +@implementation DeviceViewController + +- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil +{ + self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; + if (self) { + // Custom initialization + } + return self; +} + +- (void)viewDidLoad +{ + [super viewDidLoad]; + // Do any additional setup after loading the view. +} + +- (void)didReceiveMemoryWarning +{ + [super didReceiveMemoryWarning]; + // Dispose of any resources that can be recreated. +} + +@end