3
我們如何設置動態前後約束,如我們通過屏幕大小的百分比給出動態寬度和高度。IOS自動佈局動態前後約束
我們如何設置動態前後約束,如我們通過屏幕大小的百分比給出動態寬度和高度。IOS自動佈局動態前後約束
嘗試這個
添加以下屬性,您的viewController
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *cnstViewLeading;
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *cnstViewTrailing;
和
使用這樣
// replace value whatever you want with 0
self.cnstViewLeading.constant = 0;
self.cnstViewTrailing.constant = 0;
您可以根據您的需要製作NSLayoutContraint
的網點並更新其常數。更新常數後,您需要致電view.layoutIfNeeded()
或者,您也可以使用乘數來進行百分比佈局。