Interesting addition, my Podfile specifies:
platform :ios, '13.2'
...
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.2'
end
end
end
Is the error from a framework that is not compatible with apple arm arm64?
Post
Replies
Boosts
Views
Activity
@Rincewind Thanks! Pointing out that the latest RC of Xcode doesn't appear to have fixed it.
@darkpaw - Yes, I see the same behavior in my app, after a push / pop, it's then aligned centered correctly. Bug! Just hope it's fixed before release so I don't have to hack this.
Additionally. The affected view controllers are the root view controller for navigation controller, that are in a tab bar controller.