Same here, Apple SW still not in favour of developers....
Post
Replies
Boosts
Views
Activity
same question here ? Any solution to this ??
What is the best way to use env vars in a Flutter App using XCode Cloud CI ?
same issue here !
Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist'
Same here, I really don't understand why the Feedback provided by Internal Beta Testers is not sent automatically as an email to the provided Feedback Email ! Instead you as a developer must log into App Store Connect, navigate through a few menus and finally find the feedback. Such a very bad implementation!
Same issue right now. My apps only show data the last couple of days - which can't possibly be since the app is years old.
Same here, AVPictureInPictureController.isPictureInPictureSupported() returns false in iOS Simulator (iOS15.0.1).
Same here, new iOS14's PageTabViewStyle() does not work in Landscape, as for: the fact that rotating an iPhone to Landscape will not keep the current page (but unfortunately, it always jumps to index=0). Rotation should keep the current index and rotate arround that page.
the fact that the .ignoreSafeArea() does not work
the fact that NavigationBar is not hidden even tough explicitely told so....
Hope this will be fixed soon in a next version of iOS.
Same here - in my case it is even more than one Tab jump that the rotation to landscape or back to portrait causes.
Coud it be because the TabView-frame is much wider than tall ? But shouldn't the TabView rotation take care of this.
My rotation is made as follows:
Swift
struct DeviceRotationViewModifier: ViewModifier {
let action: (UIDeviceOrientation) - Void
func body(content: Content) - some View {
content
.onAppear()
.onReceive(NotificationCenter.default.publisher(for: UIDevice.orientationDidChangeNotification)) { _ in
action(UIDevice.current.orientation)
}
}
}
Swift
extension View {
func onRotate(perform action: @escaping (UIDeviceOrientation) - Void) - some View {
self.modifier(DeviceRotationViewModifier(action: action))
}
}
And finally, where I rotate my TabView:
Swift
TabView(selection: self.$selectedTab) {
...
}
.tabViewStyle(PageTabViewStyle())
.onRotate { _ in
print(selectedTab)
}
Any solution to this problem is highly appreciated, thank you.
Same issue here ! I hope for our product that a solution is soon presented by Apple.