-2
私は、簡単な迅速なアプリケーションの予定されたローカル通知を設定しようとしています。私のコードは、これまでのところです:スウィフト通知が機能しない
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
//Tell app to ask for user permission
EAAccessoryManager.sharedAccessoryManager().registerForLocalNotifications()
return true
}
func application(application: UIApplication, performFetchWithCompletionHandler completionHandler:
(UIBackgroundFetchResult) -> Void) {
scheduleLocalNotifications()
completionHandler(UIBackgroundFetchResult.NoData)
}
しかし、私は私のコードにS cheduleLocalNotifications()
を追加するために取得するとき、
エラーラインは言う:
Use of unresolved identifier 'scheduleLocalNotifications'
"未解決の識別子 'scheduleLocalNotifications'の使用" Pretty stレイフフォワード。あなたは存在しないメソッドを呼び出しています。 – matt
私はそれを修正するために何を提案しますか? –