我想在图像视图中显示文本字段的内容,还需要在主视图中使其可移动。
答案 0 :(得分:0)
如果我理解你的话......
例如:
myImageView
- 您的UIImageView对象,
textView
- 您的UITextView对象,
textField
- 您的UITextField对象。
首先 - 您需要将textView添加到myImageView:
CGRect textviewFrame = CGRectZero;
textviewFrame.size = myImageView.frame.size;
textView.frame = textviewFrame;
textView.scrollEnabled = YES; // To enable scroll
textView.editable = NO;
您需要实现UITextField委托方法来更新textView文本:
- (void)textFieldDidEndEditing:(UITextField *)textField
{
textView.text = textField.text;
}
所以,这就是你所需要的。