我有一個圖像視圖在該圖像視圖我把兩個textField在那裏。當我把設備放在UITextfield上的肖像模式位置是正確的。一旦我旋轉我的UITextfiled變化的設備位置。請幫助我。我正在使用IOS 6,感謝提前。如何在設備方向設置UITextfield位置
1
A
回答
0
嘗試的深入瞭解,以實現-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
。 旋轉設備時會調用此方法。在這裏你可以設置UITextField
的幀。
或者,您可以嘗試設置AutoresizingMask。
0
0
- 您可以通過AUTO LAYOUT(iOS6新功能)實現此功能。您在iOS6中創建的任何新xib將默認啓用「自動佈局」。你必須調整約束。爲此選擇您的文本字段和圖像視圖。現在從Xcode的編輯器菜單中選擇Pin。固定您的文本字段和圖像視圖。
有關自動佈局的更多信息,請閱讀這個真棒教程。 http://www.raywenderlich.com/20881/beginning-auto-layout-part-1-of-2
- 您也可以通過務實的方式來實現這一點。在willAnimateRotationToInterfaceOrientation爲您的文本字段和圖像
組框架
- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
duration:(NSTimeInterval)duration
{
[super willAnimateRotationToInterfaceOrientation:toInterfaceOrientation duration:duration];
if (toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft
|| toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)
{
// set frame for your text field and image in landscape orientation.
}
else
{
// set frame for your text field and image in landscape orientation.
}
}
完蛋了。
相關問題
- 1. 在UITextField中設置光標位置(Monotouch)
- 2. 如何在iOS中以編程方式設置設備方向
- 3. Cocos2d - 設置設備/屏幕方向
- 4. 如何僅設置設備方向橫向?
- 5. 如何在iPhone中設置設備方向?
- 6. 夫特的UITextField圖標位置設置
- 7. 獲取設備位置並在地圖上設置位置
- 8. 如何設置UITextField的borderColor?
- 9. 如何設置在UITextField中添加的圖標的位置?
- 10. 如何在dismissModalViewController之後設置方向以更正設備方向?
- 11. 設備方向設置不影響iPad設備
- 12. 根據設備類型設置設備方向
- 13. 如何在方向更改後設置按鈕位置固定
- 14. 如何僅在x方向上設置絕對位置。
- 15. 如何在方向改變時設置滾動條的位置?
- 16. 如何在強制水平方向時設置鍵盤位置?
- 17. 在uisearchbar下爲佔位符設置UITextField
- 18. 如何根據設備動態設置方向?
- 19. 設備方向更改重置方位計算輸出
- 20. 如何設置編輯=否;在UITextField中?
- 21. 如何使用Phonegap跟蹤設備位置(iOS和Android)設備
- 22. 從NSArray設置UITextField
- 23. 設置UITextField文本
- 24. 如何在eclipse上設置android設備?
- 25. 如何在Xamarin.Forms中設置ContentPage方向
- 26. 如何在nativescript中設置方向
- 27. UIGraphicsBeginImageContext如何設置位置?
- 28. 如何設置BoundingRectangle位置
- 29. Windows USB設備位置
- 30. 尋找設備的位置
嗨@ chris13請詳細解釋並舉幾個例子 –
如果你想了解更多關於AutoreszingMasks的內容,請看這裏:[link](https://developer.apple.com/library/ios/documentation/WindowsViews /Conceptual/ViewPG_iPhoneOS/CreatingViews/CreatingViews.html#//apple_ref/doc/uid/TP40009503-CH5-SW5) – chris13
感謝Crish13。 –