为TextView设置边框(Xcode 6.1)

时间:2014-11-13 20:30:34

标签: swift border xcode6.1

我已经尝试找到答案并且每次假设我知道得太多。我是一个初学者。我刚刚创建了一个新的空白应用程序。我将TextView拖到故事板上。我接下来要做什么给它一个边框?

此时没有默认的自动生成代码以外的代码。

2 个答案:

答案 0 :(得分:29)

以下是步骤: 如果让Xcode创建项目,请转到ViewController.swift文件。在这里你可以创建一个插座。

@IBOutlet var text : UITextField?

现在,您可以将文本插座连接到故事板中的文本字段。您可以通过选择助理编辑器来完成此操作。比控制从代码中的插座拖动一行到文本字段。

连接文本字段后,您可以添加代码以在viewDidLoad函数中创建边框。

class ViewController: UIViewController {
    @IBOutlet var text : UITextField?

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

        text!.layer.borderWidth = 1
        text!.layer.borderColor = UIColor.redColor().CGColor

    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }


}

答案 1 :(得分:1)

在Swift 4和Xcode 10中

首先,创建文本视图的出口

@IBOutlet weak var textView: UITextView!

然后在您的viewdidload中输入这两行

self.textView.layer.borderColor = UIColor.lightGray.cgColor
self.textView.layer.borderWidth = 1