微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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看到它们,特别是将它们视为应用程序委托协议方法.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐