Apple观看真实的响应数据

时间:2015-06-15 11:14:43

标签: ios objective-c apple-watch

你能用真实设备打印并向我显示这个输出,我需要知道它的格式。

- (void)didReceiveRemoteNotification:(NSDictionary *)remoteNotification withCompletion:(void (^)(WKUserNotificationInterfaceType))completionHandler
{    
   // This method is called when a remote notification needs to be presented.
   // Implement it if you use a dynamic notification interface.
   // Populate your dynamic notification interface as quickly as possible.
   // After populating your dynamic notification interface call the completion block.
    NSLog(@"%@",remoteNotification);
    completionHandler(WKUserNotificationInterfaceTypeCustom);
}

1 个答案:

答案 0 :(得分:0)

这是问题的有效负载响应

{
"aps": {
    "alert": {
        "body": "Test message",
        "title": "Optional title"
    },
    "category": "myCategory"
},

"WatchKit Simulator Actions": [
    {
        "title": "First Button",
        "identifier": "firstButtonAction"
    }
],

"customKey": "Use this file to define a testing payload for your notifications. The aps dictionary specifies the category, alert text and title. The WatchKit Simulator Actions array can provide info for one or more action buttons in addition to the standard Dismiss button. Any other top level keys are custom payload. If you have multiple such JSON files in your project, you'll be able to select them when choosing to debug the notification interface of your Watch App."

}