summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/ipjsua/Classes/TabBarController.m
blob: c5dcaa5d1684eaead772b9ebdff2549eac4b32cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  TabBarController.m
//  ipjsua
//
//  Created by Liong Sauw Ming on 3/24/10.
//  Copyright 2010 Teluu Inc. (http://www.teluu.com). All rights reserved.
//

#import "TabBarController.h"


@implementation TabBarController

// Override to allow orientations other than the default portrait orientation.
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

@end