Can't connect IBOutlet in Interface Builder
- by Dave C
Hello,
I have the following code:
@interface AddResident : UIViewController
{
IBOutlet UITextField *FirstName;
IBOutlet UISegmentedControl *Gender;
}
I can see both of these outlets in interface builder but can only connect the UISegmented control... the other one will not connect to my UITextField on the form.
Any help is much appreciated.