Folks;
I have successfully implemented an iOS Action Extension which reads plain text from a user's selection.
Now I want to augment this to allow the user the call the action on RTF or HTML.
I have added NSExtensionActivationSupportsAttachmentsWithMinCount (1) and NSExtensionActivationSupportsAttachmentsWithMaxCount (3) to the ActivationRule. I have updated the ActionViewController to handle the itemProviders... BUT
guard let extensionItems = extensionContext?.inputItems as? [NSExtensionItem] else {...}
only shows 1 item of plainText...
What else do I need to do to allow my action to handle RTF or HTML?
Thanks for you time! Steve