Posts

Post marked as solved
7 Replies
2.5k Views
iOS 12.1.0 + Xcode 10.1I am using URLs with bookmarks to keep recents.When I trashed a file, its bookmark results a URL in a trash.If the trashed file was located in my iPad, I can check if the file is in the current user's trash.do { var relationship = FileManager.URLRelationship.other try FileManager.default.getRelationship(&relationship, ofDirectoryAt: trashUrl, toItemAt: url) if relationship == .contains { return true }} catch { print(error.localizedDescription)}If the trashed file was in iCloud or any other clouds, how can I check if the file is in trash or not?Thank you~ ^^
Posted
by musebook.
Last updated
.
Post not yet marked as solved
5 Replies
2.3k Views
My app supports dark mode partially.Most views are using systemBackgroundColor & labelColor so that they are looking great in dark mode.A document view shows the color components as is.Before iOS 13, customers can enable smark invert so that they can see smart inverted document view.After iOS 13, customers can not see smart inverted document view because the other views are using systemBackgroundColor & labelColor.In this case, I want to enable smart invert for the document view only in dark mode.How to enable smart invert for UIView in dark mode?Is it impossible? or do I need to develop it by myself?Thanks in advance~ ^^
Posted
by musebook.
Last updated
.
Post marked as solved
1 Replies
730 Views
1. iPadOS 13 supports multiple windows.2. isIdleTimerDisabled works for the 1st UIWindowScene only.3. If the 1st UIWindowScene was moved to the background, there is no way to activate isIdleTimerDisabled for the other UIWindowScenes except the 1st UIWindowScene.I hope Apple will fix this bug asap.
Posted
by musebook.
Last updated
.
Post marked as solved
1 Replies
858 Views
iPad Air 2 with iOS 13.1.1 does not show my apps in open-in list or AirDrop list. (iOS 12 or older iOSs worked correctly)However, iPad Pro, iPhone XS Max, iPhone X with iOS 13.1.1 correctly show my apps in open-in list or AirDrop list.It looks like a bug of iOS 13.1.1 on iPad Air 2.All of my apps have the following info.plist data: <dict> <key>CFBundleTypeName</key> <string>PDF</string> <key>LSHandlerRank</key> <string>Alternate</string> <key>LSItemContentTypes</key> <array> <string>com.adobe.pdf</string> </array> </dict>Is there any help? ^^
Posted
by musebook.
Last updated
.