Post

Replies

Boosts

Views

Activity

Reply to largeTitleDisplayMode does not work correctly in iOS 26
UIKit should be allowing the large title to render when the navigation item you're setting the display mode on is topmost. Yes, I know and I do so. I set largeTitleDisplayMode as .always. So Navigation title should be always displayed as large. I mean small title should not be shown. But actually, it shows me small title when we scroll the contents. I posted FB18192371 which has sample Xcode project demonstrating the issue, and sysdiagnose. Please try. Thanks.
Topic: UI Frameworks SubTopic: UIKit
Jun ’25
Reply to Interface Orientation doesn't work for LockedCameraCapture extension.
I enquired Apple the issue via Code-Level Support but they didn't answer, they just asked me to post to Developer Forums. But I've already done that. It seems that Locked Camera Capture Extension doesn’t support interface orientation flexibility. I understand now the specification to prevent complex since it’s a Lock Screen feature. So, we should consider simple spec for our extension.
Topic: UI Frameworks SubTopic: UIKit Tags:
Oct ’24
Reply to iOS16 change orientaion
Apple released new API which is replaced with setValue:forKey:"orientation". And it's quite easy to use. iOS apps can now request rotation using [UIWindowScene requestGeometryUpdate:errorHandler:] and providing a UIWindowSceneGeometryPreferencesIOS object containing the desired orientations. (95229615) https://developer.apple.com/documentation/uikit/uiwindowscene/3975944-requestgeometryupdate/ https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-16-release-notes
Topic: UI Frameworks SubTopic: UIKit Tags:
Jun ’22
Reply to info.plist - UIDesignRequiresCompatibility makes no difference to UI
It works as expected in my environment. You should check spelling and type. It should be "UIDesignRequiresCompatibility" and "boolean".
Replies
Boosts
Views
Activity
Aug ’25
Reply to We can’t see Large Title on NavigationBar on iOS 26
Now, I understand. Thank you.
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Jun ’25
Reply to largeTitleDisplayMode does not work correctly in iOS 26
UIKit should be allowing the large title to render when the navigation item you're setting the display mode on is topmost. Yes, I know and I do so. I set largeTitleDisplayMode as .always. So Navigation title should be always displayed as large. I mean small title should not be shown. But actually, it shows me small title when we scroll the contents. I posted FB18192371 which has sample Xcode project demonstrating the issue, and sysdiagnose. Please try. Thanks.
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Jun ’25
Reply to We can’t see Large Title on NavigationBar on iOS 26
Thanks for your reply. I posted a sample Xcode project showing the problem with a sysdiagnose. Please refer to FB18192011.
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Jun ’25
Reply to Interface Orientation doesn't work for LockedCameraCapture extension.
I enquired Apple the issue via Code-Level Support but they didn't answer, they just asked me to post to Developer Forums. But I've already done that. It seems that Locked Camera Capture Extension doesn’t support interface orientation flexibility. I understand now the specification to prevent complex since it’s a Lock Screen feature. So, we should consider simple spec for our extension.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to Interface Orientation doesn't work for LockedCameraCapture extension.
I made Feedback. FB15550992
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to Xcode 14.2 no longer runs properly under rosetta after installing 14.3 beta
Xcode is no more supported under Rosetta. https://developer.apple.com/documentation/xcode-release-notes/xcode-14_3-release-notes
Replies
Boosts
Views
Activity
Feb ’23
Reply to iOS16 change orientaion
Apple released new API which is replaced with setValue:forKey:"orientation". And it's quite easy to use. iOS apps can now request rotation using [UIWindowScene requestGeometryUpdate:errorHandler:] and providing a UIWindowSceneGeometryPreferencesIOS object containing the desired orientations. (95229615) https://developer.apple.com/documentation/uikit/uiwindowscene/3975944-requestgeometryupdate/ https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-16-release-notes
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to How to make USSD call on iOS 15.4 beta
This issue seems to be resolved with iOS 15.5 beta 4. So, I think we should wait for its release and my user for updating iOS.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
May ’22
Reply to ATT permission alert is not showing at serial permission prompt flow
I found the answer in developer documentation. Apple say that "Calls to the API only prompt when the application state is: UIApplicationStateActive. Calls to the API through an app extension do not prompt.". We have to check UIApplicationState before attempt to show the prompt.
Replies
Boosts
Views
Activity
Aug ’21
Reply to Converting AVCapturePhoto to UIImage loses its metadata
fileDataRepresentation contains its metadata. But UIImage class does't have metadata property. This is the reason. You can get image source to keep maintain image's metadata. CGImageSourceCreateWithData(::) CGImageSourceCopyPropertiesAtIndex(::_:)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’21