我想在图像视图中显示文本字段的内容,并且还需要使其在主视图中可移动。
问问题
669 次
1 回答
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;
}
所以,这就是你所需要的。
于 2012-10-16T07:39:56.553 回答