将 Swift 2.3 转换为 Swift 4
convert Swift 2.3 to Swift 4
我是 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
let textView = UITextView(frame: view.bounds.insetBy(dx:10,dy:10))
我是 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
let textView = UITextView(frame: view.bounds.insetBy(dx:10,dy:10))