Apple Watch 真实响应数据

Apple watch real response data

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

- (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);
}

这是问题的负载响应

{
"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."

}