rinjan
rinjan

Reputation: 570

How to copy xcode ui files from one project to another?

I am new to xcode and swift. I downloaded a simple login application from the internet, developed the application to a larger application by adding 10 UIs and swift codes. Due to signing/licening problems in the downloaded login app, I need to start a completely new project. Is it possible to grab the ui files from the previous project to the latest project.

Upvotes: 2

Views: 2447

Answers (3)

Kishore Kumar
Kishore Kumar

Reputation: 4375

enter image description here

Its so simple just click the storyboard and open it as source code .

1.Then copy the xml fully

3.then paste the xml in to your new project storyboard source code .

Thanks :)

Upvotes: 1

objectiveCoder
objectiveCoder

Reputation: 579

if you want to copy Views from one project to another then just select your view from Document Outline and copy by pressing command + C and go to the project where you want to paste the view ,open document outline and paste by pressing command +V.

Upvotes: 0

dasdom
dasdom

Reputation: 14063

Sure. The easiest way is to drag the files into the new Xcode project and check the check box "Copy files if needed".

But you could also solve the signing problems. This not some kind of magic. It's just a collection of files.

Upvotes: 2

Related Questions