Обходной путь - отключить прототипы Clang -Wstrict-следующим образом:
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wstrict-prototypes"
completionHandler:(void(^)())completionHandler
#pragma clang diagnostic pop
{}
То же самое с handleActionWithIdentifier: forLocalNotifications.
Это похоже на ошибку.