On Jun 28, 2017, at 00:21 , Gerriet M. Denkmann <[email protected]> wrote: > > Ok, so I removed my TableView from the scene and tried to drag a > UITableViewController into its place. > But Xcode would not allow this. > > So: must a UITableViewController the only (or the top) thing in a scene? > Or am I just doing something wrong?
The trick is to use a container view. This is an item in IB’s object palette. Drag the container view into the place where the table view was, then drag a table view controller onto the storyboard, then control drag from the container view to the table view controller to create the embedding segue. That should be all it takes. _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
