i'm experiencing some issues with AutoLayout. Building for 10.8 with Xcode 4.6.2 none of the constraints i setup work for OSX 10.7. Are there any known issues around this?
Thanks!
i'm experiencing some issues with AutoLayout. Building for 10.8 with Xcode 4.6.2 none of the constraints i setup work for OSX 10.7. Are there any known issues around this?
Thanks!
I got this problem too, so I wrote a custom split view based on constraints. See my repo for code. https://github.com/silvansky/TwinPanelView
I personally gave up trying to use auto layout with split views. The manual layout works the best, in my experience, and is actually not much more complicated at all.
In particular, take a look at this answer: https://stackoverflow.com/a/843870/2308693
It's brilliant, and it gives you full control of everything (so I agree fully with the first comment on that answer).