我正在尝试在运行时更改文本视图的坐标。但观点不动。我为 Iphone 使用了相同的代码,它在那里工作正常。
//_actionTakenTextViewIpad is the UITextView.
if(count<=3)
{
_actionTakenTextViewIpad.frame=CGRectMake(60, 385, 589, 103);
}
else if (count<=6)
{
_actionTakenTextViewIpad.frame=CGRectMake(60, 485, 589, 103);
}
else
{
_actionTakenTextViewIpad.frame=CGRectMake(60, 585, 589, 103);
}
它看起来很简单,但我在这里缺少什么?请帮忙。