我有一个嵌套在View Controller中的Scroll View,它停放在Container中。视图控制器使用名为ScrollingViewController
的指定类,如下所示:
class ScrollingViewController: UIViewController {
@IBOutlet weak var scrollView: UIScrollView! //outlet for the Scroll View
override func viewDidLoad() {
super.viewDidLoad()
// 1) Create the two views used in the swipe container view
var storyboard = UIStoryboard(name: "App", bundle: nil)
var subOne: SubProfileOneViewController = storyboard.instantiateViewControllerWithIdentifier("subone") as! SubProfileOneViewController
var subTwo: SubProfileTwoViewController = storyboard.instantiateViewControllerWithIdentifier("subtwo") as! SubProfileTwoViewController
// 2) Add in each view to the container view hierarchy
// Add them in opposite order since the view hierarchy is a stack
self.addChildViewController(subTwo);
self.scrollView!.addSubview(subTwo.view);
subTwo.didMoveToParentViewController(self);
self.addChildViewController(subOne);
self.scrollView!.addSubview(subOne.view);
subOne.didMoveToParentViewController(self);
// 3) Set up the frames of the view controllers to align
// with each other inside the container view
var adminFrame :CGRect = subOne.view.frame;
adminFrame.origin.x = adminFrame.width;
subTwo.view.frame = adminFrame;
// 4) Finally set the size of the scroll view that contains the frames
var scrollWidth: CGFloat = 2 * self.view.frame.width
var scrollHeight: CGFloat = 262
self.scrollView!.contentSize = CGSizeMake(scrollWidth, scrollHeight);
// Do any additional setup after loading the view.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
基本上发生的事情是,分别使用该类SubProfileOneViewController
和SubProfileTwoViewController
的两个视图控制器被实例化为subOne
和subTwo
。然后将这些作为子项添加到Scroll View中,以创建一个界面,用户可以向右滑动以访问另一个视图(几乎像Snapchat)。 subOne
和subTwo
应该并排,用户应该能够从一个滚动到下一个,反之亦然。
SubProfileOneViewController
和SubProfileTwoViewController
每个都有一个视图(分别用绿色和红色表示),每个视图都具有相同的精确约束:高度= 262,超级视图的尾随空间= 0,前导空间为superview = 0,superview的顶空= 0
理想情况下,在运行时,应该有两个视图,一个是绿色,一个是红色,用户应该可以在每个视图之间滑动。但是,这是实际发生的事情:
绿色和红色视图不会占据整个屏幕宽度,而是会在左侧浓缩成一个小条子,而大多数视图控制器都是白色而不是各自的颜色。我尝试了很多东西,但我不确定自己做错了什么。
(ScollingViewController
中的代码归功于github上的lbrendanl,链接到这里:https://github.com/lbrendanl/SwiftSwipeView)
答案 0 :(得分:2)
注意: 我建议使用Autolayout
解决方案,该解决方案会自动处理方向更改,屏幕尺寸,所有代码都比我开发的更少以下
使用当前的方法,使用嵌入式 UIViewControllers
,您必须等待这些控制器完成各自的初始化,这与您的布局直接竞争。
请注意,您需要在方向更改时重新计算位置+尺寸。同样,虽然这有效,但不一个声音设计,因为它需要使用NSLayoutConstraint
免费获得的大量代码,逻辑和一般功能。
(测试,构建,链接和运行):
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
// 3) Set up the frames of the view controllers to align
// with each other inside the container view
var adminFrame = self.view.frame
subOne.view.frame = adminFrame
adminFrame.offset(dx: self.view.frame.width, dy: 0)
subTwo.view.frame = adminFrame;
// 4) Finally set the size of the scroll view that contains the frames
let scrollWidth = 2 * self.view.frame.width
self.scrollView!.contentSize = CGSizeMake(scrollWidth, self.view.frame.height)
}
这是滚动( in action )。请注意,我创建了类ViewLayoutAssistant.swift的视图,它允许您非常方便地可视化位置+比例。
您也不需要告诉视图其层次结构已更改。最后一段代码可以帮助您:
@IBOutlet weak var scrollView: UIScrollView!
weak var subOne: SubProfileOneViewController!
weak var subTwo: SubProfileTwoViewController!
self.addChildViewController(subTwo);
self.scrollView!.addSubview(subTwo.view);
self.addChildViewController(subOne);
self.scrollView!.addSubview(subOne.view);
答案 1 :(得分:2)
使用自动布局的ScrollView工作方式不同,您可以通过设置translatesAutoresizingMaskIntoConstraints = true
并明确设置contentSize来仅使用一个子视图。或者你设置translatesAutoresizingMaskIntoConstraints = false
并让它自己找出约束。有关详细信息,请访问此link
如你所愿,两者都应该全屏,那么你需要添加AutoLayoutConstraints,就像这样