user2350939
user2350939

Reputation: 379

Connecting with the UITextView UIBoutlet xcode 3.2

I'm trying to connect my IBOutlet UITextView but it can not connect via the Interface Builder, algumém been through this problem? and how do I make this connection with my IBOultlet?. My IBOutlet is declared like this:

the file. ago IBOutlet UITextView * notesFields;

the file. m @ synthesize notesFields;

thank youenter image description here

Upvotes: 0

Views: 70

Answers (1)

Ian L
Ian L

Reputation: 5601

Looks like you are using a UITextField rather than a UITextView. Change the IBOutlet declaration to a UITextField.

Upvotes: 2

Related Questions