-1

有名なリーダーの iPhone でアプリケーションを作成しているので、そのリーダーの画像と簡単な説明を含むメッセージ ボックスが必要です。また、説明が大きい場合はスクロールする必要があります。

4

1 に答える 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 に答える