We also had same issue.
And now we solved the issue.
Our cause was common setting for UIBarButtonItem.
[[UIBarButtonItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor], UITextAttributeTextColor, [UIFont systemFontOfSize:16], UITextAttributeFont, nil] forState:UIControlStateNormal];
I think UITextAttributeTextColor from iOS 11 affects the UIBarButtonItem’s color of shared popup buttons like ‘Message’ or ‘Twitter’.
I just deleted [UIColor whiteColor], UITextAttributeTextColor this part. And solved this issue.
I hope this is helpful for you.