我已经尝试找到答案,每次假设我知道的方式太多了。我是初学者。我刚刚创建了一个新的空白应用程序。我将TextView拖到故事板上。我接下来要做什么给它一个边框?
此时除了默认的自动生成代码之外没有其他代码。
以下是步骤:如果您让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.
}
}
在Swift 4和Xcode 10中
首先,创建文本视图的插座
@IBOutlet weak var textView: UITextView!
并在你的viewdidload中放了这两行
self.textView.layer.borderColor = UIColor.lightGray.cgColor
self.textView.layer.borderWidth = 1