I have a view controller when practicing making a newsfeed following a youtube tutorial but in order to do so I had to include a sub view:
view.addSubview(tableView)
It is intended to act like a table view where I can scroll through posts. However, I want to add an "add posts" button but only problem is that it does not show up on the simulator because as you can see I needed to put a subview in so I think the button is behind tableView. Is there a way that I can bring it forward.
I am still learning so please be patient with me :).