Move or copy view controller from one storyboard to another

前端 未结 9 863
暖寄归人
暖寄归人 2021-01-30 19:46

I have several UIViewControllers in one Storyboard. Now I want to move some UIViewControllers to another Storyboard. Is it possible?

9条回答
  •  暖寄归人
    2021-01-30 20:01

    Interface elements can be moved between Xib and Storyboard files via Copy / Paste.

    This was not originally working for me. I was attempting to copy a UICollectionViewCell from a dedicated Xib to our Main Storyboard. The cell would not copy into the Storyboard.

    The solution was to Select the specific parent element in the storyboard. The UICollectionViewCell can be pasted in as a child of a UICollectionView in the storyboard, but otherwise cannot be pasted.

    If you're having trouble pasting a specific item, be sure to double check that you have selected a valid parent element before attempting to paste.

提交回复
热议问题