我正在着名领导者的iphone中申请,所以我需要一个带有该领导者形象的消息框和他/她的简要描述。如果描述很大,它也应滚动。
答案 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];