35 lines
709 B
Objective-C
35 lines
709 B
Objective-C
//
|
|
// CocoaSecurityViewController.m
|
|
// CocoaSecurity
|
|
//
|
|
// Created by Kelp on 12/5/14.
|
|
// Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "CocoaSecurityViewController.h"
|
|
|
|
@interface CocoaSecurityViewController ()
|
|
|
|
@end
|
|
|
|
@implementation CocoaSecurityViewController
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
// Do any additional setup after loading the view, typically from a nib.
|
|
}
|
|
|
|
- (void)viewDidUnload
|
|
{
|
|
[super viewDidUnload];
|
|
// Release any retained subviews of the main view.
|
|
}
|
|
|
|
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
|
{
|
|
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
|
|
}
|
|
|
|
@end
|