Hi I have a right navigation bar button item I created in storyboard. I would now like to add a second right button as in Apple's calendar app. The pure code version would be:
navigationItem.rightBarButtonItems = [rightA, rightB]
However, I have already created one button in storyboard with various outlets and segues and would ideally like to preserve it while adding the second. My understanding is you can now create both buttons in storyboard in Xcode7 but I am still in Xcode 6 so am thinking of some sort of hybrid storyboard code solution.
Is this possible in Xcode 6?