@apple, any solutions?
Post
Replies
Boosts
Views
Activity
Interested! @apple, any suggestions ?
For me the solution was to open the Admob's dashboard in Firefox.
The only solution that worked for me was to add this Run Script to the App Extension target:
cd "${CONFIGURATIONBUILDDIR}/${UNLOCALIZEDRESOURCESFOLDER_PATH}/"
if [[ -d "Frameworks" ]]; then
rm -fr Frameworks
fi
So Apple doesn't care about this question, right?
Create a base navigation class:
class BaseNavigationController: UINavigationController {
override func viewDidLoad() {
super.viewDidLoad()
navigationBar.prefersLargeTitles = true
}
}
Create a new VC class and set largeTitleDisplayMode to .always, never or automatic:
final class TableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
navigationItem.largeTitleDisplayMode = .always
}
}
Very sad that Apple has this issue.
Tested on iOS 14.4
func paymentQueue(_ queue: SKPaymentQueue,
shouldAddStorePayment payment: SKPayment,
for product: SKProduct) -> Bool {
true
}