アプリケーション ボタンの画像を読み込んでいるときに、 の最初のビューでは読み込まれませんviewDidLoad
が、 の後に読み込まれviewWillAppear
ます。
ここに私のコードがあります、
if (activityorientation == UIInterfaceOrientationPortrait || activityorientation == UIInterfaceOrientationPortraitUpsideDown)
{
CGRect frameloginscreenbutton1 = CGRectMake(0, 0, 768,1004);
[loginscreenbutton1 setFrame:frameloginscreenbutton1];
}
else if(activityorientation == UIInterfaceOrientationLandscapeLeft || activityorientation == UIInterfaceOrientationLandscapeRight)
{
CGRect frameloginscreenbutton1 = CGRectMake(0, 0, 1024,768);
[loginscreenbutton1 setFrame:frameloginscreenbutton1];
}
ポインタはありますか?