I don't understand why this would occur, so I'm looking for someone to help explain the reason.
I did this override in my code to fix an issue I was having with blue bar button items on a blue nav bar when in Messages via an Activity share action (all other button tint is white):
extension MFMessageComposeViewController {
public override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated)
self.navigationController?.navigationBar.tintColor = UIColor.whiteColor()
}
}
Now, when I try to share text and an NSURL via UIActivityViewController, it no longer displays the text and url in the Messages text area. When I comment out the above code, it works again and displays the text and link correctly (but of course with blue bar button items on a blue nav bar).
What would cause this to happen?