I am using a UITableViewController
for create an album in my iOS application. Now i want to create a custom view over the UITableViewController
. The view must have two button for MOVE and DELETE. how can I achieve this scenario in swift? is it possible to design the custom view in storyboard?
Try to drag a normal view and put on the top of your UITableView
It will seen like this
You can set an IBOutlet to it. Set its frame. Add buttons and add it to your view like any other views
self.view.addSubview(THIS_VIEW)