可滚动消息框与图像iphone

时间:2012-11-27 13:07:34

标签: iphone

我正在着名领导者的iphone中申请,所以我需要一个带有该领导者形象的消息框和他/她的简要描述。如果描述很大,它也应滚动。

1 个答案:

答案 0 :(得分: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];