I have a ready-to-use project ( created and started with application delegate but without xib,nib). Now I want to invoke and start it from another project.
But I can’t use initwithnib, how can I include and start this ready-to-use project from another project?
More specifically, how to add and integrate Apple’s Sample code ” TableViewUpdates ( TVAnimationsGestures.xcodeproject ) ” which only has its own appDelegate and Mainwindow.xib file to my own application? thanks!
Or can you add a xib file to the Apple’s Sample code ” TableViewUpdates ( TVAnimationsGestures.xcodeproject ) ” so that I may use initWithNib in my another project to invoke and run the sample code. thanks !
I have a ready-to-use project ( created and started with application delegate but without
Share
I work on Xcode 4.3.2.
Than in ViewController.h :
Connect your tabBarController from ViewController.xib to the property.
Than in ViewController.m :
7. Check that all objects in viewController.xib has necessary outlets.
6. Edit > Refactor > Convert to ARC. (next, ok…)
It’s done.