我從其他人處展示此視圖控制器。我可以如何呈現呈現這一 根據呈現視圖控制器和方向顯示不同的圖像
基於
- 其瀏覽器不同的圖像現在我有一個以上
ContextualController
與屏幕尺寸的圖像打開按鈕。 我想調用不同的圖像,這取決於我按下按鈕的位置,這是我在三種不同的UIViewControllers
中的按鈕。我想給context_1_landscape
和context_1_portrait
打電話。從UIViewController2
我想打電話context_2_landscape
和context_2_portrait
。-(void) viewDidLoad; { [super viewDidLoad]; if((self.interfaceOrientation == UIDeviceOrientationLandscapeLeft)|| (self.interfaceOrientation ==UIDeviceOrientationLandscapeRight)){ UIImageView *imageview = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"context_1_landscape.png"]]; [self.view addSubview:imageview]; } else if ((self.interfaceOrientation ==UIDeviceOrientationPortrait)||(self.interfaceOrientation ==UIDeviceOrientationPortraitUpsideDown)){ UIImageView *imageview = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"context_1_portrait.png"]]; [self.view addSubview:imageview]; }
問題是? – LuisEspinoza
問題是我如何以及在哪裏實施if/only語句以使其工作? – user2033092
我是新來的目標c :( – user2033092