Reputation: 11
In my application I want to bring out the share sheet with the Airdrop as the only option.
I saw the answer to a question similar to it.: Share via Airdrop only But it doesn't work.
func activityViewControllerPlaceholderItem(activityViewController: UIActivityViewController) -> AnyObject {
/// Use an empty URL as placeholder to let iOS Share Sheet show the AirDrop only.
return NSURL(string: "")!
}
func activityViewController(activityViewController: UIActivityViewController, itemForActivityType activityType: String) -> AnyObject? {
return item
}
I want to bring out the share sheet with the Airdrop as the only option.
Upvotes: 1
Views: 610