我是IOS開發新手,所以當我動態更改UITextFeild的寬度時,我希望下面的按鈕向上移動。 我嘗試使用約束,但它似乎沒有動態變化。動態更改位置
(IBAction)selectStatus:(id)sender {
CGRect frameRect = _textViewDevices.frame;
frameRect.size.height = 10;
self.textViewDevices.frame = frameRect;
如何實現這一目標的好例子?
我想實現類似於android中的相對定位。
請分享一些圖像它應該是什麼,而不是 – ddb
您是否在使用自動佈局? –
@ViktorSimkóyes –