32 lines
492 B
Plaintext
32 lines
492 B
Plaintext
|
//
|
|||
|
// ViewController.m
|
|||
|
// doublehitballs
|
|||
|
//
|
|||
|
// Created by vvv ооо on 13.07.12.
|
|||
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|||
|
//
|
|||
|
|
|||
|
#import "ViewController.h"
|
|||
|
#import "ios_api.h"
|
|||
|
|
|||
|
|
|||
|
@interface ViewController () {
|
|||
|
}
|
|||
|
@end
|
|||
|
|
|||
|
@implementation ViewController
|
|||
|
|
|||
|
|
|||
|
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
|||
|
{
|
|||
|
return UIInterfaceOrientationIsPortrait(interfaceOrientation);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
- (void) appInitCaller
|
|||
|
{
|
|||
|
CustomAppInit();
|
|||
|
}
|
|||
|
|
|||
|
@end
|