2017-01-04 10 views
-1

私の主なストーリーボードには、firstViewControllerとsecondViewControllerがあり、私のpageViewControllerは3番目です。 私はすべてseque Modalを使用して接続しています。 FirstとSecondは動作していますが、私の3番目のエラーが表示されます。Xcode7エラーPageViewControllerを実行しようとしています

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Storyboard (<UIStoryboard: 0x7fb15bca4dd0>) doesn't contain a view controller with identifier 'FirstViewController'' 
*** First throw call stack: 
(
    0 CoreFoundation      0x0000000108ba7f65 __exceptionPreprocess + 165 
    1 libobjc.A.dylib      0x000000010aa62deb objc_exception_throw + 48 
    2 UIKit        0x0000000109ccc5d4 -[UIStoryboard instantiateInitialViewController] + 0 
    3        0x00000001089b422d _TFC8test23SkillPageViewControllerP33_B1A346F97B9DE8BA73F8676576C06E1324newColoredViewControllerfS0_FSSCSo16UIViewController + 365 
    4        0x00000001089b65cc _TFFC8test23SkillPageViewControllerg22orderedViewControllersGSaCSo16UIViewController_U_FT_GSaS1__ + 92 
    5        0x00000001089b2f75 _TFC8test23SkillPageViewControllerg22orderedViewControllersGSaCSo16UIViewController_ + 325 
    6        0x00000001089b3229 _TFC8test23SkillPageViewController11viewDidLoadfS0_FT_T_ + 313 
    7        0x00000001089b35e2 _TToFC8test23SkillPageViewController11viewDidLoadfS0_FT_T_ + 34 
    8 UIKit        0x0000000109775931 -[UIViewController loadViewIfRequired] + 1344 
    9 UIKit        0x0000000109775c7d -[UIViewController view] + 27 
    10 UIKit        0x0000000109edbb2c -[_UIFullscreenPresentationController _setPresentedViewController:] + 87 
    11 UIKit        0x000000010974603a -[UIPresentationController initWithPresentedViewController:presentingViewController:] + 133 
    12 UIKit        0x00000001097885c4 -[UIViewController _presentViewController:withAnimationController:completion:] + 3930 
    13 UIKit        0x000000010978b878 -[UIViewController _performCoordinatedPresentOrDismiss:animated:] + 489 
    14 UIKit        0x000000010978b387 -[UIViewController presentViewController:animated:completion:] + 179 
    15 UIKit        0x0000000109ce2af3 __67-[UIStoryboardModalSegueTemplate newDefaultPerformHandlerForSegue:]_block_invoke + 243 
    16 UIKit        0x0000000109cd1189 -[UIStoryboardSegueTemplate _performWithDestinationViewController:sender:] + 460 
    17 UIKit        0x0000000109cd0f8c -[UIStoryboardSegueTemplate _perform:] + 82 
    18 UIKit        0x0000000109cd1250 -[UIStoryboardSegueTemplate perform:] + 156 
    19 UIKit        0x00000001095ec1fa -[UIApplication sendAction:to:from:forEvent:] + 92 
    20 UIKit        0x0000000109750504 -[UIControl sendAction:to:forEvent:] + 67 
    21 UIKit        0x00000001097507d0 -[UIControl _sendActionsForEvents:withEvent:] + 311 
    22 UIKit        0x000000010974f906 -[UIControl touchesEnded:withEvent:] + 601 
    23 UIKit        0x0000000109656aa3 -[UIWindow _sendTouchesForEvent:] + 835 
    24 UIKit        0x0000000109657691 -[UIWindow sendEvent:] + 865 
    25 UIKit        0x0000000109609752 -[UIApplication sendEvent:] + 263 
    26 UIKit        0x00000001095e4fcc _UIApplicationHandleEventQueue + 6693 
    27 CoreFoundation      0x0000000108ad40a1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 
    28 CoreFoundation      0x0000000108ac9fcc __CFRunLoopDoSources0 + 556 
    29 CoreFoundation      0x0000000108ac9483 __CFRunLoopRun + 867 
    30 CoreFoundation      0x0000000108ac8e98 CFRunLoopRunSpecific + 488 
    31 GraphicsServices     0x000000010e099ad2 GSEventRunModal + 161 
    32 UIKit        0x00000001095ea676 UIApplicationMain + 171 
    33         0x00000001089ba10d main + 109 
    34 libdyld.dylib      0x000000010b58192d start + 1 
) 
libc++abi.dylib: terminating with uncaught exception of type NSException 
(lldb) 
+1

あなたがFirstViewControllerと呼ばれるviewcontrollerを持っていないと言っているエラー。あなたはそれを手に入れましたか ? –

答えて

0

あなたはあなたのコードのいずれかを提供しなかったので、それは難しいの推測ですが、エラー状態として、 あなたはストーリーボードでは、あなたが使用するビューコントローラの識別子を設定する必要があります>のViewController(追加した1ストーリーボードには、私はFirstViewControllerだと思う)>属性インスペクタ そこにはストーリーボード識別子または何かと呼ばれる何か、あなたはそれを設定する必要があります。私はあなたがそれに名前を付けるために「FirstViewController」

を必要と見るように私はこのチュートリアルをチェックすると、それは、非常に参考になるhere 非常に良いチュートリアルがあり、あなたがpageviewcontrollerを構成するいくつかの主要なステップをスキップしていると思う

関連する問題