我正在使用自動佈局編寫iOS應用程序。 我想在屏幕Y中心的下方30點放置一個按鈕。 如何爲此添加約束條件?iPhone5故事板自動佈局
2
A
回答
2
- (void)viewDidLoad
{
[super viewDidLoad];
UIView *superView = self.view;
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTranslatesAutoresizingMaskIntoConstraints:NO];
[button setTitle:@"Button" forState:UIControlStateNormal];
[superView addSubview:button];
// adding constraints to the button
NSLayoutConstraint *cn = [NSLayoutConstraint constraintWithItem:button
attribute:NSLayoutAttributeTop
relatedBy:NSLayoutRelationEqual
toItem:superView
attribute:NSLayoutAttributeCenterY
multiplier:1.0
constant:30];// adds 30 points from Screen Center Y
[superView addConstraint:cn];
cn = [NSLayoutConstraint constraintWithItem:button
attribute:NSLayoutAttributeCenterX
relatedBy:NSLayoutRelationEqual
toItem:superView
attribute:NSLayoutAttributeCenterX
multiplier:1.0
constant:0.0];// places the button in middle of X axis
[superView addConstraint:cn];
}
相關問題
- 1. iOS故事板佈局
- 2. 故事板動態自動佈局問題
- 3. 動態TextView與故事板和自動佈局
- 4. 在故事板上自動佈局實現ADBannerView
- 5. 的UIImageView伸展在iOS 8的故事板自動佈局
- 6. 無法在故事板中啓用自動佈局
- 7. 從過渡只是自動佈局故事板尺寸類別
- 8. 自動佈局在故事板中全部還是沒有?
- 9. 中心故事板在自動佈局中的看法
- 10. iOS將PKRevealController與故事板和自動佈局集成
- 11. 如何啓用自動佈局在故事板的Xcode 8
- 12. 尺寸值與故事板和自動佈局
- 13. iOS - 使用故事板和自動佈局來集中UIScrollView
- 14. Xcode故事板:按鈕圖像被拉伸與自動佈局
- 15. 如何開啓/關閉自動佈局在故事板
- 16. IOS的Xcode 6故事板自動佈局
- 17. UIScrollView使用自動佈局的故事板
- 18. 的Xcode 6.3故事板自動佈局約束
- 19. iPhone5上的故事板錯誤,在iPhone5上工作
- 20. 自動佈局故障
- 21. iOS故事板佈局 - 約束查詢
- 22. iOS10故事板佈局問題
- 23. iphone 5和4的故事板佈局
- 24. 故事板編輯器佈局混淆
- 25. 如何使使用自動佈局的故事板響應故事板上的網格並排uiview
- 26. 使用自動佈局時,自定義UIView不適合其故事板容器
- 27. 水平滾動與uiscrollview完全通過故事板和自動佈局
- 28. ios 6基於方向的故事板和自定義佈局
- 29. 實施與故事板的自定義視圖佈局
- 30. 如何在故事板中使用尺寸類別和自動佈局?
[你嘗試過什麼?](http://WhatHaveYouTried.com) –
@JohnSauer通過你的鏈接走了,好文章 – viral
訪問此鏈接(HTTP [自動佈局在iOS6的。]:// WWW。 raywenderlich.com/20881/beginning-auto-layout-part-1-of-2) –