func completeRequest (returningItems : [Any]?, completionHandler : ((Bool) -> Void)?)
Tells the host app to complete the app extension request with an array of result items.
ホストアプリに、アプリ拡張リクエストを結果項目の配列とともに完了するように伝えます。
Availability 有効性
Technology
func cancelRequest(withError error: Error
)
error
The error object to return. It must be non-nil
.
返すことになるエラーオブジェクト。それは非nil
でなければなりません。
On return, the user
dictionary of the NSError
object contains a key named NSExtension
which has as its value a dictionary of NSExtension
objects and associated NSError
instances.
戻りでは、NSError
オブジェクトのuser
辞書はNSExtension
と名前をつけられるキーを含みます、それはそれの値としてNSExtension
オブジェクトおよび結びつけられたNSError
インスタンスの辞書を持ちます。
func completeRequest (returningItems : [Any]?, completionHandler : ((Bool) -> Void)?)