alertview に textview を追加すると、scollview が上に表示され、その後ろにテキストが描画されます。この問題を解決するにはどうすればよいですか。ここにコードがあります
質問が更新されました:
設定した場合 textView.editable = NO; うまくいきますが、私の場合はテキストビューにテキストを入力する必要があります。
UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(12, 50, 260, 50)];
[textView setText:@"lashdasjh asdasjdas asdlajsdl adsjajadsd aslj daj sdjasdjasjdlasjd as dlasj d"];
UIAlertView *av = [[UIAlertView alloc]initWithTitle:@"Type Your Message" message:@"\n\n\n\n\n\n" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Send",nil];
av.alertViewStyle = UIAlertViewStyleDefault;
[av addSubview:textView];
[av show];