将Swift 2.3转换为Swift 4

时间:2018-02-07 18:39:05

标签: ios swift uitextview cgrect uiedgeinsets

我是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

1 个答案:

答案 0 :(得分:1)

let textView = UITextView(frame: view.bounds.insetBy(dx:10,dy:10))