@interface SomeViewController : UIViewController <UITextViewDelegate>
@property (retain, nonatomic) IBOutlet UIImageView *imageView;
@property (nonatomic, retain) UIImage *image;
@property (nonatomic, retain) IBOutlet UITextView *textView;
我的视图控制器中需要 textview(editable)。
所以我设置了协议,
并且,IB 也是文件的所有者。(不知道,有没有必要?)
还有我的 .m 文件.. viewDidLoad..
_textView = [[UITextView alloc]init];
[_textView setFrame:CGRectMake(8, 110, 304, 82)];
[_textView setFont:[UIFont boldSystemFontOfSize:12]];
_textView.editable = YES;
//[textView setText:@"hdgffgsfgsfgds"];// if uncommented, this actually visible...
[self.view insertSubview:_textView atIndex:2];
到目前为止,它正在工作。但我希望这些方法能够运行......
- (void)textViewDidChange:(UITextView *)textView
{
if([_textView.text length] == 0)
{
_textView.text = @"Foobar placeholder";
_textView.textColor = [UIColor lightGrayColor];
_textView.tag = 0;
}
}
但是在构建之后,我的文本视图仍然是空的。
我做错了什么?