Interface Builder or Coding the UI?

I've been learning coding with swift from a book, but till now I don't feel that I grasp the code behind the UI design very well. My question ia that can I start building a project which is little bit complex (Social Media App) using the UI Builder and not caring much about what is going behind?

Replies

In fact, if you lack mad skills, IB is your friend, especially when it comes to complex layouts.


See: https://developer.apple.com/xcode/interface-builder/

using the UI Builder

Yes, for sure, even more if the app UI is a bit complex.

Very useful for transitioning between views.


and not caring much about what is going behind?

You will have to care a lot ; IB "just" manage how items are displays and connect to the appropriate actions ; but you have to code the actions.