从 UIText 字段的用户输入更改 UIView 框架的高度和宽度

Posted

技术标签:

【中文标题】从 UIText 字段的用户输入更改 UIView 框架的高度和宽度【英文标题】:Change UIView frame Height and width from user input from UIText field 【发布时间】:2018-05-18 11:54:00 【问题描述】:

我可以通过硬编码高度和宽度来更改按钮单击时 UIView 框架的高度和宽度,但是当我在 CGFloat 格式的 UItext 字段中从用户那里获得输入时,我无法更改它。

`

 import UIKit

  class SetBorderSizeViewController: UIViewController

@IBOutlet weak var WidthText: UITextField!
@IBOutlet weak var Height: UITextField!
@IBOutlet weak var View_border: UIView!

override func viewDidLoad() 
    super.viewDidLoad()
    View_border.isHidden = true



   //Change UIView Height and width frame  on  "ChangeSizeButton" Button Press.....

@IBAction func ChangeSizeButton(_ sender: Any) 
     View_border.isHidden = false
    View_border.layer.borderWidth = 5
 /// Here i want to get user input from text field...
    View_border.frame.size.height = 20
    View_border.frame.size.width = 80
   

   

`

这里的任何人都可以根据我的要求更新我的代码吗???。

【问题讨论】:

【参考方案1】:

这段代码也可以:

class ViewController: UIViewController 

    // MARK: IBOutlets

    @IBOutlet private weak var resizableView: UIView!
    @IBOutlet private weak var widthTextField: UITextField!
    @IBOutlet private weak var heightTextField: UITextField!

    // MARK: IBActions

    @IBAction private func didResizeButtonTapped(_ sender: UIButton) 
        let (newWidth, newHeight) = convertValues()
        resizableView.frame.size.width = newWidth
        resizableView.frame.size.height = newHeight
    



// MARK: Private Methods

private extension ViewController 

    func convertValues() -> (width: CGFloat, height: CGFloat) 
        let width = Float(widthTextField.text ?? "0")
        let height = Float(heightTextField.text ?? "0")
        return (CGFloat(width ?? 0.0), CGFloat(height ?? 0.0))
    


但在我的情况下,我对“resizableView”使用了约束,因此我的视图每次都无效。在这种情况下,您可以为宽度和高度约束创建参考并将它们设置为新值,例如:

widthConstraint.constant = <your_value>

【讨论】:

【参考方案2】:

试试这个:

@IBAction func ChangeSizeButton(_ sender: Any) 
         View_border.isHidden = false
        View_border.layer.borderWidth = 5
     /// Here i want to get user input from text field...
        View_border.frame.size.height = CGFloat(Float(WidthText.text!)!)
        View_border.frame.size.width = CGFloat(Float(Height.text!)!)
        self.View_border.layoutIfNeeded()
       

【讨论】:

无法使用“(字符串?)”类型的参数列表为“Int”类型调用初始化程序 @Shabbir Ahmad

以上是关于从 UIText 字段的用户输入更改 UIView 框架的高度和宽度的主要内容,如果未能解决你的问题,请参考以下文章

相对于 UITableview 更改 UIView 高度

当用户从选择框中选择选项时更改输入字段的值

无法更改 UIText 视图的字体(使用 Web 服务时)

UISearchBar:更改输入字段的背景颜色

UISearchBar:更改输入字段的背景颜色

iOS - 隐藏在键盘后面的 UIView 容器