In two places in our application, the text that the user enters shows only the first line of text. Both events are located in external environments, first in UIActivityView, and in Freshdesk MobiHelp.
First, using the UIActivityView when using Twitter:
The problem is that if the text goes beyond one line in the modal, the text becomes transparent:

NSString *textToShare = [NSString stringWithFormat:NSLocalizedString(@"CHALLENGE-TWITTER- DEFAULT-TEXT", nil), [UserManager currentUser].displayName]; NSString *urlToShare = [NSURL URLWithString:@"http://example.com"]; NSArray *activityItems = @[textToShare, urlToShare]; UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil]; [self presentViewController:activityVC animated:YES completion:nil];
Secondly, send a request to Freshdesk: 
I should also add that the Facebook mod from UIActivityView works just fine: 
I would really appreciate any advice here as I got lost.
Hans N. hjort
source share