2
A
回答
3
你的問題不是很清楚,但可以如下得到關於屏幕尺寸信息:
// Screen Sizes
let screenWidth = UIScreen.mainScreen().bounds.width
let screenHeight = UIScreen.mainScreen().bounds.height
然後,您可以修改框架或按鈕這樣的中心位置:
// Change frame
btnName.frame = CGRectMake(screenWidth/3, screenHeight/2, 100, 100)
// Change center of button
btnName.center = CGPoint(x: screenHeight/2, y: screenWidth/2)
希望它有幫助
+0
in viewDidLoad this not工作!我應該在哪裏寫這段代碼? –
+0
如果您向我提供一些您的代碼,我相信我可以更有幫助... – TurtleFan
相關問題
- 1. 以編程方式移動UIButton?
- 2. 如何以編程方式移動UIButton。 Objective C xCode
- 3. 以編程方式移除uiview by uibutton
- 4. 以編程方式編碼UIButton行動
- 5. 如何以編程方式創建UIButton
- 6. UIButton UIPopUpController以編程方式
- 7. 以編程方式定義UIButton快速
- 8. 以編程方式獲取UIButton
- 9. 以編程方式禁用UIButton
- 10. 以編程方式中心UIButton
- 11. 從IBAction以編程方式添加UIButton
- 12. 以編程方式向UINavigationController添加UIButton
- 13. 以編程方式禁用UIButton
- 14. 以編程方式更改UIButton狀態
- 15. 以編程方式更改UIButton標題
- 16. 如何以編程方式連接UIButton和方法?
- 17. Magento - 以編程方式移動類別
- 18. 以編程方式移動UIImageView框架
- 19. EXTSJS:treepanel以編程方式移動分支
- 20. 以編程方式移動FormulaFieldDefinition對象
- 21. 以編程方式移動AutoscrollBar
- 22. 以編程方式移動鼠標
- 23. 如何以絕對佈局以編程方式移動按鈕
- 24. 如何以編程方式啓動移動中心(MBLCTR.EXE)
- 25. Swift以動態高度以編程方式創建UIButton
- 26. UIButton IB vs編程方式
- 27. 如何以編程方式向UIButton提供光面外觀?
- 28. 如何以編程方式將UIButton添加到UIToolBar?
- 29. 如何在Swift中以編程方式更改UIButton狀態
- 30. 如何以編程方式快速添加自定義UIButton
button.center = newPosition; ? –
您可以通過更改框架 –
或buttonTopConstraint.constant = newVerticalValue; [[button superView] setNeedsLayout]; –