Posts

Post not yet marked as solved
0 Replies
208 Views
I'm testing and app on iOS 14. I have UITextView in UITableViewCell and I need to handle user interaction with links in text using UITextViewDelegate (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange interaction:(UITextItemInteraction)interaction {     switch (interaction) {         case UITextItemInteractionInvokeDefaultAction:             NSLog(@"interaction = DefaultAction");             break;         case UITextItemInteractionPresentActions:             NSLog(@"interaction = PresentActions");             break;         case UITextItemInteractionPreview:             NSLog(@"interaction = Preview");             break;         default:             break;     }     return YES; } Interaction works with long tap only and I get interaction = UITextItemInteractionPresentActions. Why normal tap does not work?
Posted
by Micha.
Last updated
.
Post not yet marked as solved
0 Replies
200 Views
I need to test In-App purchase but when I try to add tester I get an error. When I try second time I get an email marked by red color.
Posted
by Micha.
Last updated
.
Post marked as solved
3 Replies
1.4k Views
I've created an app with standart template Master-Detail in Xcode 9. I can't understand why there is only master controller in iPhone X simulator? iPhone 6,7,8 Plus have both master and detail. I alse tride to make all visible[splitViewController setPreferredDisplayMode: UISplitViewControllerDisplayModeAllVisible];but it does not work. I did not find and and info in Fall 2017 - Session 801 vide and in updated HIG for iPhone X.Could you explain is it a new pattern or a just a bug in simulator?
Posted
by Micha.
Last updated
.