I want to embed UIScrollView
s in my UITableViewCell
s in order to accomplish the iOS 7 cell sliding paradigm (seen in Mail.app among others).
I normally set up the entirety of my app in Storyboards and use Auto Layout. UIScrollView
is unfortunately very annoying to use in conjunction with Auto Layout, so I guess I'm going to have to avoid using it.
What's my best course of action for using UIScrollView
with a Storyboard that uses Auto Layout? (I need the scroll view to adapt to a landscape orientation switch, something that would be very easy with Auto Layout.) I still would like to use Storyboards, and need to position the scroll views, but as I can't just switch to strings and struts for one view, and Auto Layout is out, I'm rather stuck.
Should I create its size in portrait, not set any constraints, and then in viewDidLoad
set some auto-resizing masks? Or is it only zooming that UIScrollView
s and Auto Layout conflict over, and simple panning should be fine?