Проблема с альбомной и книжной ориентацией в приложении TabBar - PullRequest
0 голосов
/ 08 апреля 2010

У меня есть приложение TabBar, которое я хотел бы видеть в альбомной и портретной ориентации. Проблема заключается в том, что когда я перехожу на вкладку 2, делаю выбор из моей таблицы, затем выбираю вкладку 1 и поворачиваю устройство, затем снова выбираю вкладку 2, содержимое не знает, что устройство повернуто, и не будет правильно отображать мое пользовательское содержимое. Я пытаюсь написать метод priovate, который сообщает представлению, в какой ориентации он находится в данный момент. IN viewDidLoad Я предполагаю, что он в портретной ориентации, но в shouldAutoRotate он ищет в приватном методе правильное выравнивание содержимого. Пожалуйста помоги!! Вот мой код:

#import "DetailViewController.h"
#import "ScheduleTableViewController.h"
#import "BrightcoveDemoAppDelegate.h"
#import "Constants.h"

@implementation DetailViewController


@synthesize CurrentLevel, CurrentTitle, tableDataSource,logoName,showDescription,showDescriptionInfo,showTime, showTimeInfo, tableBG;

- (void)layoutSubviews {

 showLogo.frame = CGRectMake(40, 20, 187, 101);
 showDescription.frame = CGRectMake(85, 140, 330, 65);
 showTime.frame = CGRectMake(130, 10, 149, 119);
 tableBG.frame = CGRectMake(0, 0, 480, 320);

}

/*
 // The designated initializer.  Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
        // Custom initialization
    }
    return self;
}
*/

/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}
*/


// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
    [super viewDidLoad];
 self.navigationItem.title = CurrentTitle; 
 [showDescription setEditable:NO];
 //show the description
 showDescription.text = showDescriptionInfo;
 showTime.text = showTimeInfo;
 NSString *Path = [[NSBundle mainBundle] bundlePath];
 NSString *ImagePath = [Path stringByAppendingPathComponent:logoName];
 UIImage *tempImg = [[UIImage alloc] initWithContentsOfFile:ImagePath];
 [showLogo setImage:tempImg];
 [tempImg release];
 [self masterView];

}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
 return YES;
}

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
 isLandscape = UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
 if(isLandscape = YES){
 [self layoutSubviews];

 }

}





- (void)didReceiveMemoryWarning {
 // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

 // Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
 // Release any retained subviews of the main view.
 // e.g. self.myOutlet = nil;
}


- (void)dealloc {
 [logoName release];
 [showLogo release];
 [showDescription release];
 [showDescriptionInfo release];
    [super dealloc];
}


@end

1 Ответ

0 голосов
/ 08 апреля 2010

Я считаю, что вам нужно передать метод -shouldAutorotateToInterfaceOrientation: каждому контроллеру представления. Вы можете сделать что-то подобное в вашем UITabBarController:

- ( BOOL )shouldAutorotateToInterfaceOrientation:( UIInterfaceOrientation )
          interfaceOrientation
{
    for ( UIViewController *viewController in [ self viewControllers ])
        [ viewController
           shouldAutorotateToInterfaceOrientation:interfaceOrientation ];

    return YES;
}
...