Post

Replies

Boosts

Views

Activity

Reply to iOS 14.3 UITextField leak?
If anyone (else) is coming across this issue with their custom UITextInput control. The following work around will work (assuming you don't need autocorrect): var autocorrectionType: UITextAutocorrectionType { get { .no } set { fatalError() } }
Topic: UI Frameworks SubTopic: UIKit Tags:
Nov ’22
Reply to Xcode 15.1 is adding extra lines in between print() statements, sometimes
Actually, nevermind... I turned OS_ACTIVITY_MODE on and there were still excess /n's without any OS_ACTIVITY_MODE spam in between.
Replies
Boosts
Views
Activity
Feb ’24
Reply to Xcode 15.1 is adding extra lines in between print() statements, sometimes
If I were to guess, I believe this is related to OS_ACTIVITY_MODE = disable, where some /n's are bleeding through.
Replies
Boosts
Views
Activity
Feb ’24
Reply to iOS 14.3 UITextField leak?
If anyone (else) is coming across this issue with their custom UITextInput control. The following work around will work (assuming you don't need autocorrect): var autocorrectionType: UITextAutocorrectionType { get { .no } set { fatalError() } }
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Nov ’22