I\'m working on a keyboard for iOS 8 using Autolayout to place the buttons on the view.
When I\'m changing the layout using constraints, everything is appearing correctl
Yes! I solved that problem myself.
I'm not sure if I got it right, but that's what I think:
My solution now was to manually call .layoutSubviews() on all my views which contains all my buttons of my keyboard. After that, I get the size of all the buttons I want.
Please correct me if I'm wrong.