How to find the UI element connected to a specific IBOutlet?

4.2k Views Asked by At

Is there any way to find which UI element an IBOutlet declared in code is connected to?

2

There are 2 best solutions below

3
Mehul Patel On BEST ANSWER

Go to your view controller file where you have declared IBOutlet (.h or .m). Then you can see left side of each variable declaration there is a dark grey round image. (It is filled if you have connected that IBOutlet with Storyboard/Xib unless it is unfilled.)

By clicking that image you can see small popover which shows connection of outlet. See below image will show you.

enter image description here

0
ManishNC On

You can search for the IBOutlet property name in the project directory. There you will find the corresponding xib file and UI element.