我正在著名领导者的 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 回答