I want to combine two Xcode projects into one app. I have project-one which is working fine and project-two w/c is also working fine. project-one is more like of an ebook gatherer and project-two is the ebook reader. The two works fine separately. I drag and drop project-two into project-one and add project-two as dependency for project-one. I get no errors when building the app and It runs normally until I open a tab(the whole app is a tabbarcontroller). I have a 'books' tab and when I tap this, I want to run project-two in this tab. I tried calling the nib from project-two to load when the 'books' tab is tapped but it gives me a warning 'Unknown class RootViewController in Interface Builder file.'. So how can I successfully link the two projects so I can load project-two in my 'books' tab?
Thanks!