Xcode 4.2 creating navigation based application

后端 未结 8 1643
终归单人心
终归单人心 2020-12-03 05:19

I just tried to create navigation based application via xcode 4.2 and all I found in the new window have nothing to do with navigation based application .. I found page b

相关标签:
8条回答
  • 2020-12-03 05:51

    for me , start build an empty project and then create a new MainWindow and then just drag the navigtioncontroller to the newwindow u create

    0 讨论(0)
  • 2020-12-03 05:52

    Until you're comfortable with the new features in iOS 5 (Storyboards, Page View Controllers, etc.), your best bet is to keep a copy of Xcode 3 and create your project there, then open the project in Xcode 4.

    You can still download the last version of Xcode 3 (3.2.6 with iOS SDK 4.3) from the developer page:

    http://developer.apple.com/devcenter/ios

    The "About Xcode and iOS SDK" PDF on the install disk describes how to choose a custom install location to avoid overwriting your Xcode 4 install. Don't select the Unix tools option as that will overwrite that portion of your current Xcode 4 install.

    0 讨论(0)
  • 2020-12-03 05:55

    For Navigation only application, you have to chose single view application first. This will give only a view based application without navigationcontroller.

    All you have to do is select the viewcontroller and goto menu

    Editor -> Embed In -> Navigation Controller
    

    This will give you a navigation based project to start work with.

    as @Tommy Herbert said, you can choose master-detail application template where you can select more option like Core data. But this will name your first two VC as master-controller and detailcontroller which is not apt.

    0 讨论(0)
  • 2020-12-03 05:56

    Just create single view application, and in xib just drag'n'drop navigation controller from library to objects.

    0 讨论(0)
  • 2020-12-03 05:58

    As darvids0n says, you should start from the Master-Detail Application template rather than the Page-Based one. You're free to untick Use Storyboard while choosing options for the new project.

    0 讨论(0)
  • 2020-12-03 06:00

    Open X-code Project -> create new project -> Click On Master Based Application The window Is Open This Is The process For Creating Direct Navigation Based Applications

    0 讨论(0)
提交回复
热议问题