Post

Replies

Boosts

Views

Activity

Wrong Product.displayPrice?
I am using StoreKit 2 for my products and noticed that users from Ukraine (for example) receive a wrong Product.displayPrice. The App Store works with USD but shows the local currency UAH. Any chance to display the correct currency (USD)?
1
0
54
Apr ’25
Reimplementing UINavigationController's pop behaviour
I'm looking for ideas on how to reimplement UINavigationController's pop/dismiss behaviour. The animated transition manages to move the view ( .from ) together with the keyboard ( UIRemoteKeyboardWindow ) and inputAccessoryView ( UITextEffectsWindow ). I tried to animate a snapshot of the windows and to move the frame of the windows, but it lead to all kinds of visual bugs. I'd appreciate any kind of hint, thank you!
1
0
485
Jul ’21
Using "targets" value of . interactivePopGestureRecognizer
I would like to use the "targets" value of UINavigationController's .interactivePopGestureRecognizer for my custom gesture recognizer. Does it infringe upon the private API rule of Apple or is it safe to use? guard let interactivePopGestureRecognizer = interactivePopGestureRecognizer, let targets = interactivePopGestureRecognizer.value(forKey: "targets") else { return }  customGestureRecognizer.setValue(targets, forKey: "targets") Thank you!
2
0
625
Jul ’21