0

我正在使用自定义摄像机。为了方便录制,我将相机设置为纵向,但看起来好像是横向。这对我有用,因为由于项目的性质,我希望视频的宽度很长。目前,我在使用 iOS 6 时遇到了挑战,让我的视图控制器旋转到纵向,当设备旋转到 LandscapeLeft 和 LandscapeRight 时,portraitUpsideDown。当设备旋转到横向时,iOS 6 中是否有告诉视图控制器旋转到纵向?以前我会用 shouldAutoRotateToOrientation 做到这一点

目前我正在玩弄这些方法

- (BOOL)shouldAutorotate {
    return YES;
}

- (NSUInteger)supportedInterfaceOrientationsForWindow {
    return UIInterfaceOrientationMaskPortrait;
}

我已经查看了很多关于 iOS6 中这些更改的堆栈溢出的其他文档,但还没有找到解决这个问题的方法。

4

1 回答 1

0

We were able to get working. We did for Landscape but you can do it for Portrait by modifying the code bellow:

First in the interface (this is only partial b/c of company policies i can't show you everything):

@interface YourViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
{
    UITableView *myTableView;
    CGAffineTransform _originalTransform;
    CGRect _originalBounds;
    CGPoint _originalCenter;
}

@property (nonatomic, retain) UITableView *myTableView;

@end

Next here is the implementation:

@implementation YourViewController

@synthesize myTableView;

- (void)loadView {

    UIView *viewContainer = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];

    CGRect tableFrame;
    tableFrame.origin.x += 10;
    tableFrame.origin.y -= 15;
    tableFrame.size.height = 320;
    tableFrame.size.width = 460;

    // create and configure the table view
    myTableView = [[UITableView alloc] initWithFrame:tableFrame style:UITableViewStylePlain];

    myTableView.delegate = self;
    myTableView.dataSource = self;
    myTableView.autoresizesSubviews = YES;
    myTableView.scrollEnabled = YES;    
    myTableView.autoresizingMask = UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleWidth;


    [viewContainer addSubview:myTableView];
    self.view = viewContainer;  
}

- (void)viewWillAppear:(BOOL)animated {

    AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];

    _originalTransform = [[appDelegate navController].view transform];
    _originalBounds = [[appDelegate navController].view bounds];
    _originalCenter = [[appDelegate navController].view center];

    CGAffineTransform landscapeTransform = CGAffineTransformMakeRotation(degreesToRadian(3.14/2));
    //landscapeTransform = CGAffineTransformTranslate (landscapeTransform, +80.0, +100.0);

    [[appDelegate navController].view setTransform:landscapeTransform];

    [appDelegate navController].view.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
    [appDelegate navController].view.bounds  = CGRectMake(0.0, 0.0, 480.0, 320.0);
    //[appDelegate navController].view.center  = CGPointMake (240.0, 160.0);

    [UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeRight;
}

- (void) viewWillDisappear:(BOOL)animated {

    AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    [[appDelegate navController].view setTransform:_originalTransform];
    [[appDelegate navController].view setBounds:_originalBounds];
    [[appDelegate navController].view setCenter:_originalCenter];

    [UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationPortrait; 
}
于 2012-11-30T08:52:21.270 回答