Parenthesis matching

Hi After various searching I am unable to find a solution.

How is Xcode does one get the IDE to show matching parenthesis.

I can double click () brackets and it highlights the code. But I have failed to find a solution for {{.

Many thanks

Xcode will identify the matching curly braces { } in a similar manner as it does for a pair of parentheses ( ).
In either case, to find the matching parenthesis/curly brace place your cursor just after the opening or closing parenthesis/curly brace and the matching one will flash yellow for a second.

To select the block of code defined by the parenthesis/curly braces, double click just after the opening parenthesis/curly brace or double click on the inside of the closing parenthesis/curly brace.

1 Like