You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Xcode 6, you can now define custom UIViews as IB_DESIGNABLE and the view will actually render in Interface Builder. For example, I am creating a crossword app and need a completely custom keyboard. Using the IB_DESIGNABLE attribute, this is how my view controller renders in IB:
The crossword grid and the keyboard are both single UIViews on the view controller's view.
The text was updated successfully, but these errors were encountered:
With Xcode 6, you can now define custom UIViews as
IB_DESIGNABLE
and the view will actually render in Interface Builder. For example, I am creating a crossword app and need a completely custom keyboard. Using theIB_DESIGNABLE
attribute, this is how my view controller renders in IB:The crossword grid and the keyboard are both single UIViews on the view controller's view.
The text was updated successfully, but these errors were encountered: