Swift老项目更新语法提示,看出变化 了啥

privatefileprivate

Swift老项目更新语法提示,看出变化 了啥_第1张图片
image.png

UIBarButtonItemStyle.PlainUIBarButtonItemStyle.plain

Swift老项目更新语法提示,看出变化 了啥_第2张图片
image.png

.CGColor.cgColor

image.png

NSBundle.mainBundle().infoDictionaryBundle.main.infoDictionary更精简

image.png

方法名位置调整
.popViewControllerAnimated(true)popViewController(animated: true),animated飞升了

image.png

内部参数外部参数

image.png

通知中心嗨起来
NSNotificationCenter.defaultCenter()NotificationCenter.default
键盘通知名从UIKeyboardWillChangeFrameNotificationNSNotification.Name.UIKeyboardWillChangeFrame

image.png

这个开始有点头晕了
好像是selector的引用从Selector("interactivePopGestureRecognizer")#selector(getter: UINavigationController.interactivePopGestureRecognizer)

image.png

NSTimeIntervalTimeInterval

image.png

UITextViewDelegate有变,这个一敲Xcode会有提示的,不用记


image.png

GCD更精简

DispatchQueue.global().async {

    DispatchQueue.main.async {

        self.label?.text = "finished"

    }

}


let delay = DispatchTime.now() + .seconds(60)
DispatchQueue.main.after(when: delay) {
    // Do something
}

Swift老项目更新语法提示,看出变化 了啥_第3张图片
image.png

已放弃更新,太多报错,Swift真是坑

你可能感兴趣的:(Swift老项目更新语法提示,看出变化 了啥)