My app implements Share
extension. I can share any link to my app from Safari, once I tap POST
button within SLComposeServiceViewController
share view disappear, but screen of Safari is frozen. I need to force close Safari to use it again.
- What may be the reason of this?
- How can I prevent from happen this in the future?
This is how my didSelectPost()
looks like:
override func didSelectPost() {
AddToWishlistNetworkClient.sharedClient().createItemForWishlistIdentifier(selectedWishlist!.identifier, addressOrUrl: composePropertyUrlSheet.value, comment: contentText, completionBlock: nil)
}