2

Sometimes empty suggestion/bubble appears when editing UITextField in mac catalyst app. Tried turning off corrections and spellchecking, nothing worked. Attached screenshot. How do I get rid of that?

Empty bubble

Raptor
  • 53,206
  • 45
  • 230
  • 366
Eddie Ed
  • 21
  • 1
  • Have you solved your problem? I have a similar one over here: https://stackoverflow.com/questions/74220070/strange-transparent-view-appears-beneath-textfield-in-mac-catalyst-app – uem Nov 02 '22 at 10:25
  • 1
    I didn't find any solutions. I just accepted it as non critical catalyst bug. – Eddie Ed Nov 03 '22 at 12:05

1 Answers1

1
textField.autocorrectionType = .no

This is specifically for non-password textfields. As for password textfields, I haven't looked into which property handles it, but essentially, this is the input suggestion box in macOS. When your textfield is a password field, it will prompt you with suggested saved account password information. However, when there are no suggestions, it will still display an empty list.

Jason Zhao
  • 11
  • 3