I am trying to add "reply" functionality to a particular tweet via SLComposerViewController.
I need to loop through all the subviews and grab the send button as it shows here
SLComposeViewController* tweetViewController = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter];
for (UIView * subview in tweetViewController.view.subviews){
///
}
but the subviews is empty. and I couldn't garb the send button. Any clue is much appreciated!
Any other suggestions to have reply functionality for iOS 8 other than using Social framework? I had DETweetComposeViewController before.