iOS 8 Share extension loadItemForTypeIdentifier:options:completionHandler: completion closure not executing

后端 未结 6 1837
一向
一向 2020-12-24 09:07

I\'m using the loadItemForTypeIdentifier:options:completionHandler: method on an NSItemProvider object to extract a url from Safari via a Share extension in iOS 8.

6条回答
  •  抹茶落季
    2020-12-24 09:47

    call

    self.extensionContext!.completeRequestReturningItems([], completionHandler: nil) 
    

    at the end of completionHandler instead of calling it at the end of didSelectPost()

提交回复
热议问题