我目前有一个视图,其中我有一个滚动视图。在那个滚动视图上,我有一个按钮和一个 UITableView。
在某些条件下,我想将这两件事向上移动。我目前正在这样做:
tempFrame = [addressTableView frame];
tempFrame.origin.x = 0.0;
tempFrame.origin.y = 2.0;
tempFrame.size.width = 320.0;
tempFrame.size.height = 103.0;
[addressTableView setFrame:tempFrame];
// [self.scrollView addSubview:self.addressTableView]; (does not do anything)
tempFrame = [buttonContinue frame];
tempFrame.origin.x = 20.0;
tempFrame.origin.y = 40.0;
tempFrame.size.width = 150.0;
tempFrame.size.height = 25.0;
[buttonContinue setFrame:tempFrame];
// [self.scrollView addSubview:self.buttonContinue]; (does not do anything)
此方法适用于没有 scrollView 的视图。
任何有关如何正确移动滚动视图中的对象的提示将不胜感激。
谢谢。