My tvOS app gets JSON data from a server, and formats and displays it on the TV. Most of the data is text, which I just display. One item is a URL to an image, which I load and display as a UIImageView.
But one of the fields is a URL to a product support web page. Given the absence of UIWebView, however, I can't display the web page (without re-implementing UIWebView... ug). I was thinking about sending the URL to an iOS device so the user could display it there. But I can't justify writing an app for iOS just to re-implement SMS/email.
So I'd also be interested in any clever thoughts on how to transport a small text message to an iOS device without writing code for the iOS device. Nothing jumped out at me (are there any free SMS gateways that our apps could HTTP POST to?), but I'm a bit of a n00b.