所以在故事板中我有一个名为FormViewController的UIViewController类。我在故事板中设置了ViewController以使用它:
然后我在头文件中有三个文本字段:
#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
但是,当我尝试将故事板中的那些连接到视图控制器时,它不会弹出。
有什么想法吗?
答案 0 :(得分:2)
UITextField
和UITextView
是两个非常不同的类 - 您创建了UITextField
个实例,但您的商店输入为UITextView
。
只需将您的插座类型更改为UITextField
,一切都应该正常!
(UITextView
,用于记录,是一个滚动的,通常可编辑的字段,更像是字处理器。)