Check out IBOutlet from IOS debug UIView

I am using UIView

debugging to understand why the layout is wrong or why I set the text incorrectly.

When I do UIView

debug I saw this. I've only seen UILabel

and I don't know which one IBOutlet

I have set to. May I know if it is possible which outlet I have installed? or determine what it is UILabel

and find it inside my code?

enter image description here

+3


source to share


1 answer


In your interface builder, right click on your UILabel and a dialog pops up showing these shortcut properties, there will be one for it (it will be in the repositories). Then you can look at the corresponding header / implementation file and define the property to which the output is connected, in this example it is "backgroundView".



-1


source







All Articles