docs: We support arbitrary NSDictionary now

This commit is contained in:
Cheng Zhao 2016-05-05 17:07:46 +09:00
parent 2f9fee0c8a
commit c9c4ba39ab

View file

@ -116,11 +116,12 @@ the application's dock icon.
Returns: Returns:
* `event` Event * `event` Event
* `type` String - A string identifying the event. Maps to [`NSUserActivity.activityType`](https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSUserActivity_Class/index.html#//apple_ref/occ/instp/NSUserActivity/activityType). * `type` String - A string identifying the activity. Maps to
[`NSUserActivity.activityType`][activity-type].
* `userInfo` Object - Contains app-specific state stored by the activity on * `userInfo` Object - Contains app-specific state stored by the activity on
another device. Currently only string data is supported. another device.
Emitted during [handoff][handoff] when an activity from a different device wants Emitted during [Handoff][handoff] when an activity from a different device wants
to be resumed. You should call `event.preventDefault()` if you want to handle to be resumed. You should call `event.preventDefault()` if you want to handle
this event. this event.
@ -502,13 +503,12 @@ app.on('ready', function() {
### `app.setUserActivity(type, userInfo)` _OS X_ ### `app.setUserActivity(type, userInfo)` _OS X_
* `type` String - Uniquely identifies the activity. It's recommended to use a * `type` String - Uniquely identifies the activity. Maps to
reverse-DNS string. [`NSUserActivity.activityType`][activity-type].
* `userInfo` Object - App-specific state to store for use by another device. * `userInfo` Object - App-specific state to store for use by another device.
Currently only string data is supported.
Creates an `NSUserActivity` and sets it as the current activity. The activity Creates an `NSUserActivity` and sets it as the current activity. The activity
is eligible for [handoff][handoff] to another device afterward. is eligible for [Handoff][handoff] to another device afterward.
### `app.getCurrentActivityType()` _OS X_ ### `app.getCurrentActivityType()` _OS X_
@ -602,3 +602,4 @@ Sets the `image` associated with this dock icon.
[CFBundleURLTypes]: https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/TP40009249-102207-TPXREF115 [CFBundleURLTypes]: https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/TP40009249-102207-TPXREF115
[LSCopyDefaultHandlerForURLScheme]: https://developer.apple.com/library/mac/documentation/Carbon/Reference/LaunchServicesReference/#//apple_ref/c/func/LSCopyDefaultHandlerForURLScheme [LSCopyDefaultHandlerForURLScheme]: https://developer.apple.com/library/mac/documentation/Carbon/Reference/LaunchServicesReference/#//apple_ref/c/func/LSCopyDefaultHandlerForURLScheme
[handoff]: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/Handoff/HandoffFundamentals/HandoffFundamentals.html [handoff]: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/Handoff/HandoffFundamentals/HandoffFundamentals.html
[activity-type]: https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSUserActivity_Class/index.html#//apple_ref/occ/instp/NSUserActivity/activityType