-2

我是 Swift 4 的新手,我想用 Uitextview 错误解决 Swift 2.0 版项目

这是 Swift 4 中的错误

let textView = UITextView(frame: CGRectInset(view.bounds, 10, 10))

我将更改为'CGRectInset' 已被实例方法 'CGRect.insetBy(dx:dy:)' 替换

但我不知道怎么做

我用 let textView = UITextView(frame: CGRect.insetBy(view.bounds, 10, 10)) 改变但又出错了

这是另一个问题

textView.textContainerInset = UIEdgeInsetsZero

我会改变UIEdgeInsetsZero

4

1 回答 1

2
let textView = UITextView(frame: view.bounds.insetBy(dx:10,dy:10))
于 2018-02-07T18:41:17.127 回答