mirror of
https://github.com/darlinghq/darling-security.git
synced 2024-11-30 07:20:44 +00:00
39 lines
665 B
Objective-C
39 lines
665 B
Objective-C
//
|
|
// 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
|