XCode 3.2.6 Interface Builder Not Connecting
In interface builder my outlets and ibactions won't connect. They simply won't show up, like it doesn't exist.
Here is my code:
@interface RootViewController : UIViewController { IBOutlet UILabel *time; }开发者_开发知识库 -(IBAction)changetime;
In Interface Builder the only two connections there are is:
view
searchDisplayController.
Please Help!
Had the same issue. Make sure you save (Shortcut: Ctrl+S
) your .h
before opening your .xib
file.
精彩评论