Posts

Post not yet marked as solved
1 Replies
1.3k Views
On our iOS app, on the login page, we have a username field and a password field.When pressing RETURN, in the keyboard, the app move to the next responder or starts the login process if all the fields are filled.When running the app in MAC Catalina, if one of those fields is the first responder a FLOATING "Password..." button appears on the left of the Window - See attachment.When we write something the text is inserted in the textView but the ENTER Key is not detected anymore. This "Passwords..." Button has now the FOCUS. We also tried to implement- (NSArray *) keyCommands { ... }method in the underlying viewController but it doesn't solve the issue.Anybody knows how to disable it or how to solve the issue on Mac Catalyst?Here is the screenshot:https://www.dropbox.com/s/ri43wx3b1z83x5g/Login-Pwd.png?dl=0Regards,Marco
Posted
by MarcoKat.
Last updated
.
Post not yet marked as solved
3 Replies
838 Views
Opened two different scenes of my app in Mac Catalina and when dragging an item from one window1) If I drop the item in another scene, in the destination - (BOOL) dropInteraction:(UIDropInteraction *)interaction canHandleSession:(id<UIDropSession>)session API_AVAILABLE(ios(11.0)) { - (void) dropInteraction:(UIDropInteraction *)interaction performDrop:(id<UIDropSession>)session API_AVAILABLE(ios(11.0)) {...the UIDropSession is always nil.2) If I drop the item in the same exact window from where I started the dragging the <UIDropSession> object is NOT nil.3) Everything works well on iPadOS.---------------------------------------------Am I doing something wrong?Did I forget to enable something in order for an item to be dragged on another scene in MAC?
Posted
by MarcoKat.
Last updated
.
Post marked as solved
1 Replies
3.0k Views
When Running my iOS (Mac) app locally through xcode on MAC catalina everything works fine but when I export my app to test devices and I try to RUN it, the app doesn't open and in the console I receive the following errors:Couldn't write values for keys ( ApplicationAccessibilityEnabled ) in CFPrefsPlistSource<0x600002c10280> (Domain: com.apple.Accessibility, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No): setting preferences outside an application's container requires user-preference-write or file-write-data sandbox accessCouldn't write values for keys ( AccessibilityEnabled ) in CFPrefsPlistSource<0x600002c10280> (Domain: com.apple.Accessibility, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No): setting preferences outside an application's container requires user-preference-write or file-write-data sandbox accessCouldn't write values for keys ( FullKeyboardAccessFocusRingEnabled ) in CFPrefsPlistSource<0x600002c10280> (Domain: com.apple.Accessibility, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No): setting preferences outside an application's container requires user-preference-write or file-write-data sandbox accessCouldn't write values for keys ( ApplicationAccessibilityEnabled ) in CFPrefsPlistSource<0x600002c10280> (Domain: com.apple.Accessibility, User: kCFPreferencesCurrentUser, ByHost: No, Container: (null), Contents Need Refresh: No): setting preferences outside an application's container requires user-preference-write or file-write-data sandbox accessRBSStateCapture remove item called for untracked item >; configCount: 0>and...UIKitSystemAppServices1. Lifecycle: Connection to UIKitSystem was interrupted.2. Lifecycle: Connection to UIKitSystem is no longer valid. Exiting immediately!3. RBSStateCapture remove item called for untracked item <RBProcessMonitorObserver: 0x7fc0dcf0ece0; <RBProcess: 0x7fc0dcf02010; 90765; identity: application<maccatalyst.uk.co.myApp(501)>>; configCount: 0>
Posted
by MarcoKat.
Last updated
.