私はUITextView
iPhoneアプリに持っています。でUITextView i have added UIImageView as subview
。入力したテキストがfinal height the texts are scrolling to top
. 代わりにUIImageView (with image) also scrolling top
. 画像のスクロールを停止し、テキストをスクロールできるようにするにはどうすればよいですか? 参照用の私のコードは次のとおりです。
messageTextView = [[UITextView alloc] initWithFrame:CGRectMake(35, 5, 210, 30)];
messageTextView.delegate = self;
messageTextView.backgroundColor = [UIColor clearColor];
messageTextView.clipsToBounds = YES;
messageTextView.font = [UIFont fontWithName:@"Helvetica" size:14];
messageTextView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
textViewImageView = [[UIImageView alloc]initWithFrame: CGRectMake(0, 0, 210, 30)];
textViewImageView.image = [UIImage imageNamed: @"textbg.png"];
textViewImageView.contentMode = UIViewContentModeScaleToFill;
textViewImageView.contentStretch = CGRectMake(0.5, 0.5, 0, 0);
[messageTextView addSubview: textViewImageView];
[messageTextView sendSubviewToBack: textViewImageView];
[messageTextView addSubview:textViewLabel];
誰でもこれを解決するのを手伝ってもらえますか? 前もって感謝します。あなたのお返事を待っている。