swift 3中的所有6个app委托函数“几乎匹配可选要求” – 这是什么?怎么修?

昨晚下载了 xcode 8.2 beta,转换了我的大部分代码,但现在我遇到了关于app delegate六个函数的黄色警告符号:
var window: UIWindow?


func application(application: UIApplication,didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    // Override point for customization after application launch.
    return true
}

  func applicationWillResignActive(application: UIApplication) {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks,disable timers,and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

  func applicationDidEnterBackground(application: UIApplication) {
    // Use this method to release shared resources,save user data,invalidate timers,and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution,this method is called instead of applicationWillTerminate: when the user quits.
}

  func applicationWillEnterForeground(application: UIApplication) {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}

 func applicationDidBecomeActive(application: UIApplication) {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was prevIoUsly in the background,optionally refresh the user interface.
}

func applicationWillTerminate(application: UIApplication) {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
}

我可以用其中任何一个“修复”每个功能

Rename to application(_:didFinishLaunchingWithOptions:)' to      satisfy this requirement

  Make 'application(application:didFinishLaunchingWithOptions:)'       private to slince this warning

要么

Add '@nonobjc' to silence this warning

考虑到我之前没有看过这三个选项,有人会介意解释和解决或忽视它们的任何选择吗?

这是“重命名”的一部分,Swift 3改变了方法一个参数外化的规则.

所以,做第一个选项:在每种情况下,将_ to make _ application :(而不是application:plain和simple)作为第一个参数的名称.否则,应用程序将被外部化,并且Objective-C将这些方法视为被称为applicationWithApplication …这不是您想要发生的事情.

要做其他任何一个.您不希望从Objective-C(private或@nonobjc)隐藏这些方法;您希望Objective-C看到它们,特别是将它们视为应用程序委托协议方法.

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...