Where are outlets and actions stored in codes in Objective C?

ios, iphone, objective-c, xcode

Solution

Actually there is no linkage, which is why people often mess this up. The xib/storyboard has some names. And the code has some names. But only when the nib loads during runtime is an attempt made to match them up. If they don't match (and it is perfectly possible for them not to match), you can crash.

Problem

I understand that in Objective C we can link buttons and actions together using the interface builder, but the connection must be physically stored in the source code somewhere. I just want to know where is the exact location so I can view it in source code. Not that I am going to manipulate it in anyway I just want to know where they are stored. Thanks!

Original source