Xcode 4故事板,不想连接到IBOutlet的文本字段

时间:2014-07-02 15:52:07

标签: ios xcode

所以在故事板中我有一个名为FormViewController的UIViewController类。我在故事板中设置了ViewController以使用它:

custom class

然后我在头文件中有三个文本字段:

#import <UIKit/UIKit.h>

@interface FormViewController : UIViewController

@property (strong, retain) IBOutlet UITextView *firstName;
@property (strong, retain) IBOutlet UITextView *lastName;
@property (strong, retain) IBOutlet UITextView *email;

- (IBAction) save:(id)sender;

- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender;

@end

但是,当我尝试将故事板中的那些连接到视图控制器时,它不会弹出。

enter image description here

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

UITextFieldUITextView是两个非常不同的类 - 您创建了UITextField个实例,但您的商店输入为UITextView

只需将您的插座类型更改为UITextField,一切都应该正常!

UITextView,用于记录,是一个滚动的,通常可编辑的字段,更像是字处理器。)