Post

Replies

Boosts

Views

Activity

Reply to Problem with Info.plist on Catalyst
I have a similar problem where I can open pdf with my app on iOS, but on macCatalyst it is not working. It was working at a time on macOS, but it has stopped working. When I do an open with, my app is not there on macOS. I have only 1 .plist and it is definitely all there in the app installed from the macOS store. ... <key>CFBundleDocumentTypes</key> <array> <dict> <key>CFBundleTypeIconFiles</key> <array/> <key>CFBundleTypeName</key> <string>PDF File</string> <key>LSHandlerRank</key> <string>Alternate</string> <key>LSItemContentTypes</key> <array> <string>com.adobe.pdf</string> </array> </dict> ...
Feb ’21
Reply to What is the replacement for deprecated contentEdgeInsets
Now it is working on macOS 12.0 Problem is as soon as you use anything from Configuration, everything else stop working. There is obviously a conflict in that SDK. 2 mutually exclusive things in the same UIButton. Also if I use configuration to set image, there is only 1 image instead of the 2 that you could set on the good old UIButton. I will wait for Apple to make their mind about where the are going. I will let the messy storm pass.
Oct ’21
Reply to URLRequest.httpShouldHandleCookies is broken beyond repair.
I tested further with a tool to see the https traffic (Charles). I can do this when I start the app urlRequest.httpShouldHandleCookies = true //Always inject cookies Or I can do this when I start the app urlRequest.httpShouldHandleCookies = false //Never inject cookies But if I change it on the fly, as soon as it is set to false, even if I set it to true later, it will never inject the cookies. urlRequest.httpShouldHandleCookies = isSendCookies //Never inject cookies
Nov ’21