我的 UITextView 有一个描述,但在它的底部,我想在最后一行文本下方添加图像。我怎么做?
UITextView* description = [[UITextView alloc] init];
description.frame = CGRectMake(0, 0, 320, 420);
description.text = [self.dict valueForKey:@"description"];
description.font = [UIFont systemFontOfSize:14];
[self.view addSubview:description];
已编辑:文本不可编辑。我真正想做的看起来像是 Apple App Store 中的一个应用程序。滚动到描述的底部后,有一个可滚动的屏幕截图视图。我想实现同样的事情。
谢谢!