First - apologies for starting a new question but I don't yet have the required reputation to comment on the original.
I have implemented the scroll view from here https://github.com/crashoverride777/SwiftySKScrollView and this question ScrollView in SpriteKit. Everything works great, until I try to resize it or move it. I'm hoping to have two separate scroll views next to each other (which doesn't seem like it should be too difficult) but i cannot move the first SwiftySKScrollView to one side.
I've worked out that the issue happens as soon as I change any of the frame parameters in
scrollView = SwiftySKScrollView(frame: CGRect(x: 0, y: 0, width: CGFloat(frame.width), height: frame.height), moveableNode: moveableNode, direction: .vertical)
After I change the parameters (and that's all I'm doing - even just dividing the height parameter by two alone causes the problem), the scroll view shows up exactly how I want it but the children no longer respond to touch.
Thanks for any help, I really appreciate it.