EGOTextView *view = [[EGOTextView alloc]initWithFrame:
CGRectMake(5.0f,5.0f,310.0f,220.0f)];
view.delegate = (id<EGOTextViewDelegate>)self;
view.layer.borderWidth = 1.0f;
view.layer.cornerRadius = 15;
//view.clipsToBounds = YES;
view.backgroundColor = [UIColor whiteColor];
view.returnKeyType = UIReturnKeyDone;
//view.contentInset = UIEdgeInsetsZero;
[self.view addSubview:view];
self.egoTextView = view;
self.egoTextView.font = [UIFont fontWithName:@"Helvetica" size:25.0f];
self.egoTextView.attributedString = string;
[view release];
[view becomeFirstResponder];
上記のコードは textview を作成しましたが、最初の 2 行が非表示になり、表示されません。表示するには下にスクロールする必要があります。
また、最初に設定されたテキストは、前述のフォント サイズを使用しません。私がテキストを入力したときだけ、私が言及したフォントサイズが影響を受けました。
では、これをどのように修正する必要がありますか。助けてくれてどうもありがとう