Is there a way to revert the Xcode autocomplete style to the Xcode 11 one?
In Xcode 12, when typing, for example:
The autocomplete shows:
Previously, it would show:
Its really inconvenient not being able to see the input type of all of them. It only shows you the full thing for the highlighted one below the table. Is there a way to show them again?
In Xcode 12, when typing, for example:
Code Block swift UIFont(
The autocomplete shows:
Code Block swift () (descriptor:size:) (name:size:)
Previously, it would show:
Code Block swift () -> UIFont (descriptor: UIFontDescriptor, size pointSize: CGFloat) -> UIFont (name fontName: String, size fontSize: CGFloat) -> UIFont?
Its really inconvenient not being able to see the input type of all of them. It only shows you the full thing for the highlighted one below the table. Is there a way to show them again?