In suggestion from code completion i don't see what type returns (e.g. String, Void, etc. ) suggested method.
Which Xcode version ?
I tested by typing:
let x = "Hello".upp
in Xcode 11, I get proposals such as:
-> So the return type (String) is indicated
in Xcode 12, I get in the list
and the detail when selecting the item in list
So effectively, the return type does not show anymore in the selection menu, but in the detail of the current selection. AFAIK, there is no way to change this
I tested by typing:
let x = "Hello".upp
in Xcode 11, I get proposals such as:
Code Block String uppercased()
-> So the return type (String) is indicated
in Xcode 12, I get in the list
Code Block uppercased(with:)
and the detail when selecting the item in list
Code Block uppercased(with locale: Locale?) -> String
So effectively, the return type does not show anymore in the selection menu, but in the detail of the current selection. AFAIK, there is no way to change this