我有一個按鈕,我需要找到它在不同位置的每個方向。 這裏我有UIButton在方向問題
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
if (interfaceOrientation== UIInterfaceOrientationPortrait || interfaceOrientation== UIInterfaceOrientationPortraitDown)
button.frame=CGRectMake(150.0f,150.0f,55.0f,55.0f);
else
button.frame=CGRectMake(100.0f,100.0f,55.0f,55.0f);
return YES;
}
它的工作的第一旋轉,當我將iPad旋轉按鈕,再進入到另一個位置。 例如在UIInterfaceOrientationPortrait按鈕不在這裏(150.0f,150.0f,55.0f,55.0f) 我該如何解決這個問題? 感謝您的幫助。
你是什麼意思「去到另一個地點「? – occulus 2011-03-29 09:43:42