我在我的 Controller 中添加了很多 ui 元素,并且我还在实现代码中完成了 Web 服务部分。似乎我的默认屏幕尺寸 View Controller 不足以让我显示信息。是否可以向现有 Controller 添加 ScrollView ,如果可以,请给出想法或示例,以便我可以添加更多 ui 元素。
提前致谢。
试试这个让主视图变成 ScrollView :
- (void)loadView {
// create and configure the scrollview
UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];
self.view = scrollView;
}
loadView
是子类 View Controller 应该配置它们的主视图的方法,它在VC加载之前自动调用,不应该直接调用。
将所有元素添加到 ScrollView 后,您要更改内容大小,使其实际滚动如下:
// this for a horizontal scroll
[scrollView setContetSize:CGSizeMake(CGRectGetMaxX(lastElementOnTheRight), scrollView.frame.size.height)];
// this for a vertical scroll
[scrollView setContentSize:CGSizeMake(scrolView.frame.size, CGRectGetMaxY(lastElementOnTheBottom))];
关于ios - 如何向现有 View Controller 添加 ScrollView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26519727/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |