我是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
答案 0 :(得分:1)
let textView = UITextView(frame: view.bounds.insetBy(dx:10,dy:10))