作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forRemoteNotification:(NSDictionary *)userInfo completionHandler:(void (^)(void))completionHandler {}
Conflicting parameter types in implementation of 'application:handleActionWithIdentifier:forRemoteNotification:completionHandler:': 'void (^ _Nonnull __strong)()' vs 'void (^__strong _Nonnull)(void)'
最佳答案
一种解决方法是禁用 Clang 的 -Wstrict-prototypes,如下所示:
- (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
{}
关于ios - 'application :handleActionWithIdentifier:forRemoteNotification:completionHandler 实现中的参数类型冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51036649/
- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier f
我有一个用于 Apple Watch 通知的简单静态接口(interface),如下所示: 并且在 PushNotificationPayload 中如下: { "aps": {
简而言之:我可以添加自定义输入文本框来响应推送通知。我只是无法触发关联的应用程序委托(delegate)来实际处理来自用户的输入。 我有两个自定义操作,比如 acceptAction(一个简单的可操作
我是一名优秀的程序员,十分优秀!