Post

Replies

Boosts

Views

Created

Keychain return different key when switching branches
Currently I found a wired issue on my application. The code basically unchanged for months. But suddenly when I switching to a different branch (a bit older), then back to the latest develop branch, the keychain returns a different encryption key. The keychain implementation remains the same for long time. Wondering if anyone can give some insights about it.
0
0
342
Oct ’23
UIAccessibilityScreenChangedNotification not working when using largest dynamic font
I met this problem recently. Basically, I want the voice-over back to the first element ( the bar item ) when the alert is dismissed. I had tried passing the bar item UIAlertAction *okAction = [UIAlertAction actionWithTitle: @"OK"                               style:UIAlertActionStyleCancel                              handler:^(UIAlertAction *action) {       dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{         UIAccessibilityPostNotification(UIAccessibilityScreenChangedNotification, self.navigationItem.leftBarButtonItem);       });     }]; I also tried passing nil to UIAccessibilityScreenChangedNotification. I also tried setting accessibility elements in this controller or in the view in the controller. But none of the above works. When I tested it on iPhone Xr (iOS 15), there was no problem. But it's not working on iPhone 8 Plus (iOS 14). The issue with iPhone 8 Plus (iOS 14) is that the voice-over just randomly focuses on some element on the view. I was searching in docs, forums and websites but could not really find any help. Maybe someone has made the same experience and could share the solution with me. Thank you in advance!
1
0
914
Mar ’22
Keychain return different key when switching branches
Currently I found a wired issue on my application. The code basically unchanged for months. But suddenly when I switching to a different branch (a bit older), then back to the latest develop branch, the keychain returns a different encryption key. The keychain implementation remains the same for long time. Wondering if anyone can give some insights about it.
Replies
0
Boosts
0
Views
342
Activity
Oct ’23
NTLM authentication is not supported (-1) Xcode 13.3.1
Xcode 13.3 and Xcode 13.3.1 are both having this issue. Xcode 13.2.1works fine. The error happens when trying to fetch an internal Swift package. I found this link: https://developer.apple.com/forums/thread/702460?login=true&page=1#710172022. However, our TFS already disabled Windows Authentication. Can someone help to resolve this?
Replies
0
Boosts
0
Views
1.2k
Activity
Apr ’22
Xcode 13.3 SwiftPM.SPMRepositoryError error 5
I downloaded Xcode 13.3 today. When I build my project, this error shows. When I open Xcode 13.2.1, all works fine. Does anyone know what the error is about?
Replies
7
Boosts
0
Views
4.4k
Activity
Mar ’22
UIAccessibilityScreenChangedNotification not working when using largest dynamic font
I met this problem recently. Basically, I want the voice-over back to the first element ( the bar item ) when the alert is dismissed. I had tried passing the bar item UIAlertAction *okAction = [UIAlertAction actionWithTitle: @"OK"                               style:UIAlertActionStyleCancel                              handler:^(UIAlertAction *action) {       dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{         UIAccessibilityPostNotification(UIAccessibilityScreenChangedNotification, self.navigationItem.leftBarButtonItem);       });     }]; I also tried passing nil to UIAccessibilityScreenChangedNotification. I also tried setting accessibility elements in this controller or in the view in the controller. But none of the above works. When I tested it on iPhone Xr (iOS 15), there was no problem. But it's not working on iPhone 8 Plus (iOS 14). The issue with iPhone 8 Plus (iOS 14) is that the voice-over just randomly focuses on some element on the view. I was searching in docs, forums and websites but could not really find any help. Maybe someone has made the same experience and could share the solution with me. Thank you in advance!
Replies
1
Boosts
0
Views
914
Activity
Mar ’22