I want to develop ios share extention with custom callout. In apple documents
To provide a custom compose view instead of the standard one, deselect “Us
It looks like that option was removed (or never made it to a public release).
Anyway, from reading the description, it sounds like you just need to create a share extension, and change the ShareViewController
's superclass from SLComposeServiceViewController
to UIViewController
, and get rid of the isContentValid
, didSelectPost
, and configurationItems
stub methods in the class definition.
Then you can set up your view however you like in MainInterface.storyboard
.
This answer above deserved an update. We should not change super class of ShareViewController
, instead configure it via configurationItems
to add configuration options via table cells.
This tutorial show how to do it properly.