Post

Replies

Boosts

Views

Activity

Reply to SiriTipUIView is missing the application name for an app shortcut
This has been partially resolved. As it turns out CFBundleDisplayName went missing from the Info.plist. Adding CFBundleDisplayName back resolved the problem with SiriTipUIView. However now ShortcutsUIButton suffers from the same problem. Often displaying just "shortcuts" instead of "APP NAME shortcuts" But the problem with ShortcutsUIButton is less of an issue because it doesn't look weird when it is just "shortcuts"
Sep ’22
Reply to Cannot get better video quality than 720p from UIImagePickerController
Try setting picker.videoExportPreset to one of the AVAssetExportSession presets: https://developer.apple.com/documentation/avfoundation/avassetexportsession/export_preset_names_for_quicktime_files_of_a_given_size In my test picker.videoExportPreset = AVAssetExportPresetHEVCHighestQuality returns the video at original size in .move format. If you really want to have the original video, you might want to look into PhotoKit/Photos framework.
Jun ’20