CocoaSecurity/iOS View/CocoaSecurityViewController.m

35 lines
709 B
Mathematica
Raw Normal View History

2012-05-15 06:33:32 +08:00
//
// 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