実際には、最初の行の広告のデフォルトで大きくなると、次の行のテキストフィールドにテキストを設定しようとしています。手伝ってくれませんか。私のuitextfieldはIBを介して取得されます。私はそれを書こうとしていて、コメントのようなものを投稿したいと思っています。
[viewFeedback setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"background_Feedback.png"]]];
CGSize size = [txtFeedback.text sizeWithFont:txtFeedback.font];
CGRect f = txtFeedback.frame;
f.size.height = ceil(size.width/f.size.width)*size.height;
txtFeedback.frame = f;
txtFeedback は、ここでのテキスト フィールド名です。