Shortcut for function parameter tooltip

In Swift, when I start using a function, I get a prompt describing the parameters. But when I start typing it disappears and I have no idea what to call it after that.

What is the shortcut to invoke this tool again?

Several images for what I want.

When I for example create UIAlertController

and click (

, Xcode will show this

Now if you select and press ENTER, it will autocomplete parameter names and enter values.

But if you start typing the name and value of the first parameter , add a comma, Xcode won't show this hint to find out the name of the next parameter

And in this case, I would like to know the shortcut to invoke the tooltip with the name of the next parameter.

If I clicked escape

it doesn't help either. I even went down to the exact parameter name, but Xcode didn't recognize it.

PS. This is the same command as CTRL + P in Android Studio.

+3


source to share





All Articles