Home > Blockchain >  How to look up or edit existing IBAction?
How to look up or edit existing IBAction?

Time:05-10

When adding an IBAction by ctrl drag it is possible to see this menu:

enter image description here

But how can I access it when IBAction is already created? How can I see or edit the values selected in this menu?

CodePudding user response:

You can check IBAction already existed in xib or storyboard by click on view / view controller -> on the right menu, select Show the connections inspector

enter image description here

Then at the bottom, check Received Actions section:

enter image description here

  • Related