有名なリーダーの iPhone でアプリケーションを作成しているので、そのリーダーの画像と簡単な説明を含むメッセージ ボックスが必要です。また、説明が大きい場合はスクロールする必要があります。
質問する
59 次
1 に答える
0
UITextView
この要件に使用し、このコントロールUIImageView
の背後に設定してください。UITextView
たとえば、次のコードを参照してください。
UITextView *textView = [[UITextView alloc]initWithFrame:CGRectMake(10, 100, 300, 300)];
textView.delegate = self;
textView.text = @"Your Description";
textView.editable = NO;
[textView setBackgroundColor:[UIColor clearColor]];
UIImageView *imgeBack = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"Your Image Name"]];
imgeBack.frame = textView.frame;
[self.view addSubview:imgeBack];
[self.view addSubview:textView];
于 2012-11-27T13:08:50.277 に答える