CocoaSecurity/iOS View/CocoaSecurityViewController.m
2012-05-15 06:33:32 +08:00

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