func paymentQueue(_ queue: SKPaymentQueue,
shouldAddStorePayment payment: SKPayment,
for product: SKProduct) -> Bool {
true
}
Post
Replies
Boosts
Views
Activity
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
So Apple doesn't care about this question, right?
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
For me the solution was to open the Admob's dashboard in Firefox.
Interested! @apple, any suggestions ?
@apple, any solutions?