Reputation: 26223
I am curious about something that I am seeing in interface builder when I right click on the "First Responder" placemark. My question is when I right click the "First Responder" lists its received actions, amongst theses are 5 methods that are defined in one of my early classes, does anyone know why they are showing up, does it matter, is this normal?
If I right click on [First Responder] on any of the nib/xib files in my project (there are 4) I see the following.
I am just curious why the buttonPressed_XXX methods display in that list (for all the xibs in the project).
Upvotes: 0
Views: 331
Reputation: 11
https://i.sstatic.net/WBMsk.png
First reponder is action of Keyboard to go off after you finish typing.. in above image all these actions uses keyboard so it shows that page when you remove the action(IBAction) thats it...
Upvotes: 1
Reputation: 533
Did you delete the references from IB? XCode doesn't automatically delete the IBOutlets or IBActions if you hook up objects and get rid of the objects or IBActions. Press x beside the name of the object and the object type to get rid of the IBAction or Outlet. A picture could be helpful.
Upvotes: 0