Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6222203
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T08:16:23+00:00 2026-05-24T08:16:23+00:00

This is the error i’m getting when i try and show a view controller

  • 0

This is the error i’m getting when i try and show a view controller modally inside my app:

*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<KVPasscodeViewController 0x8b815a0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key instructionLabel.'
*** Call stack at first throw:
(
    0   CoreFoundation                      0x011185a9 __exceptionPreprocess + 185
    1   libobjc.A.dylib                     0x0126c313 objc_exception_throw + 44
    2   CoreFoundation                      0x011184e1 -[NSException raise] + 17
    3   Foundation                          0x00aea677 _NSSetUsingKeyValueSetter + 135
    4   Foundation                          0x00aea5e5 -[NSObject(NSKeyValueCoding) setValue:forKey:] + 285
    5   UIKit                               0x0056630c -[UIRuntimeOutletConnection connect] + 112
    6   CoreFoundation                      0x0108e8cf -[NSArray makeObjectsPerformSelector:] + 239
    7   UIKit                               0x00564d23 -[UINib instantiateWithOwner:options:] + 1041
    8   UIKit                               0x00566ab7 -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] + 168
    9   UIKit                               0x0041c628 -[UIViewController _loadViewFromNibNamed:bundle:] + 70
    10  UIKit                               0x0041a134 -[UIViewController loadView] + 120
    11  UIKit                               0x0041a00e -[UIViewController view] + 56
    12  UIKit                               0x00418482 -[UIViewController contentScrollView] + 42
    13  UIKit                               0x00428f25 -[UINavigationController _computeAndApplyScrollContentInsetDeltaForViewController:] + 48
    14  UIKit                               0x00427555 -[UINavigationController _layoutViewController:] + 43
    15  UIKit                               0x00428870 -[UINavigationController _startTransition:fromViewController:toViewController:] + 524
    16  UIKit                               0x0042332a -[UINavigationController _startDeferredTransitionIfNeeded] + 266
    17  UIKit                               0x0053e2e9 -[UILayoutContainerView layoutSubviews] + 226
    18  QuartzCore                          0x002a6a5a -[CALayer layoutSublayers] + 181
    19  QuartzCore                          0x002a8ddc CALayerLayoutIfNeeded + 220
    20  QuartzCore                          0x002a8ed0 -[CALayer layoutIfNeeded] + 111
    21  UIKit                               0x0041b58a -[UIViewController window:willAnimateRotationToInterfaceOrientation:duration:] + 587
    22  UIKit                               0x0039255f -[UIWindow _setRotatableClient:toOrientation:updateStatusBar:duration:force:] + 4347
    23  UIKit                               0x00619619 -[UIWindowController transition:fromViewController:toViewController:target:didEndSelector:] + 1381
    24  UIKit                               0x0041e65d -[UIViewController presentModalViewController:withTransition:] + 3478
    25  DearMe                              0x00011ca1 -[NotificationViewController addPasscode] + 273
    26  UIKit                               0x0036a4fd -[UIApplication sendAction:to:from:forEvent:] + 119
    27  UIKit                               0x003fa799 -[UIControl sendAction:to:forEvent:] + 67
    28  UIKit                               0x003fcc2b -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 527
    29  UIKit                               0x003fb7d8 -[UIControl touchesEnded:withEvent:] + 458
    30  UIKit                               0x0038eded -[UIWindow _sendTouchesForEvent:] + 567
    31  UIKit                               0x0036fc37 -[UIApplication sendEvent:] + 447
    32  UIKit                               0x00374f2e _UIApplicationHandleEvent + 7576
    33  GraphicsServices                    0x015f2992 PurpleEventCallback + 1550
    34  CoreFoundation                      0x010f9944 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 52
    35  CoreFoundation                      0x01059cf7 __CFRunLoopDoSource1 + 215
    36  CoreFoundation                      0x01056f83 __CFRunLoopRun + 979
    37  CoreFoundation                      0x01056840 CFRunLoopRunSpecific + 208
    38  CoreFoundation                      0x01056761 CFRunLoopRunInMode + 97
    39  GraphicsServices                    0x015f11c4 GSEventRunModal + 217
    40  GraphicsServices                    0x015f1289 GSEventRun + 115
    41  UIKit                               0x00378c93 UIApplicationMain + 1160
    42  DearMe                              0x000029df main + 127
    43  DearMe                              0x00002955 start + 53
    44  ???                                 0x00000001 0x0 + 1
)
terminate called after throwing an instance of 'NSException'

Any ideas about why this might be caused?

EDIT: The code which gives the error:

KVPasscodeViewController *passcodeController = [[KVPasscodeViewController alloc] init];
    passcodeController.delegate = self;
    UINavigationController *passcodeNavigationController = [[UINavigationController alloc] initWithRootViewController:passcodeController];
    [self.navigationController presentModalViewController:passcodeNavigationController animated:YES];
    [passcodeNavigationController release];
    [passcodeController release];
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T08:16:25+00:00Added an answer on May 24, 2026 at 8:16 am

    This is caused because you have an outlet pointing at ‘instructionLabel’ in the XIB for that view controller.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

what this error mean, when i am installing the app on device,i am getting
this error apear when I try to cancel row in grid view The GridView
Getting this error on a call inside the Delphi Initialization section of an Impl
This error message is driving me nuts. I'm getting it when using Html.ListBox and
Getting this error: 2009-09-03 12:44:02.307 xcodebuild[307:10b] warning: compiler 'com.apple.compilers.llvm.clang.1_0.analyzer' is based on missing compiler
Getting this error with jquery & jquery.form. Site has been live for awhile..upgraded to
Getting this error when I submit my form to savetext.aspx action file: Compiler Error
Getting this error when updating a row via a gridview with a sqldatasource in
Getting this error: System.Data.SqlClient.SqlException : The conversion of a datetime2 data type to a
Getting this error: Each GROUP BY expression must contain at least one column that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.