在IOS中显示新视图

时间:2012-03-13 20:36:57

标签: ios uiviewcontroller

我正在尝试显示包含用户帐户详细信息的视图。作为iOS开发的新手,以下代码应该起作用(基于文档和搜索)。然而,应用程序崩溃,我得到一个错误,说明无法识别的选择器:

2012-03-13 16:32:25.616 UrbanAgendaApp[4993:207] Displaying profile view
2012-03-13 16:32:25.635 UrbanAgendaApp[4993:207] -[UAFirstViewController presentViewController:animated:completion:]: unrecognized selector sent to instance 0x4b45240
2012-03-13 16:32:25.674 UrbanAgendaApp[4993:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UAFirstViewController presentViewController:animated:completion:]: unrecognized selector sent to instance 0x4b45240'
*** Call stack at first throw:
(
    0   CoreFoundation                      0x00fbabe9 __exceptionPreprocess + 185
    1   libobjc.A.dylib                     0x0110f5c2 objc_exception_throw + 47
    2   CoreFoundation                      0x00fbc6fb -[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3   CoreFoundation                      0x00f2c366 ___forwarding___ + 966
    4   CoreFoundation                      0x00f2bf22 _CF_forwarding_prep_0 + 50
    5   UrbanAgendaApp                      0x00002308 -[UAFirstViewController showProfileView] + 168
    6   UrbanAgendaApp                      0x00002254 -[UAFirstViewController myUaBtnTouch:] + 52
    7   UIKit                               0x00014a6e -[UIApplication sendAction:to:from:forEvent:] + 119
    8   UIKit                               0x000a31b5 -[UIControl sendAction:to:forEvent:] + 67
    9   UIKit                               0x000a5647 -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 527
    10  UIKit                               0x000a41f4 -[UIControl touchesEnded:withEvent:] + 458
    11  UIKit                               0x000390d1 -[UIWindow _sendTouchesForEvent:] + 567
    12  UIKit                               0x0001a37a -[UIApplication sendEvent:] + 447
    13  UIKit                               0x0001f732 _UIApplicationHandleEvent + 7576
    14  GraphicsServices                    0x00cbea36 PurpleEventCallback + 1550
    15  CoreFoundation                      0x00f9c064 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 52
    16  CoreFoundation                      0x00efc6f7 __CFRunLoopDoSource1 + 215
    17  CoreFoundation                      0x00ef9983 __CFRunLoopRun + 979
    18  CoreFoundation                      0x00ef9240 CFRunLoopRunSpecific + 208
    19  CoreFoundation                      0x00ef9161 CFRunLoopRunInMode + 97
    20  GraphicsServices                    0x00cbd268 GSEventRunModal + 217
    21  GraphicsServices                    0x00cbd32d GSEventRun + 115
    22  UIKit                               0x0002342e UIApplicationMain + 1160
    23  UrbanAgendaApp                      0x00001c2a main + 170
    24  UrbanAgendaApp                      0x00001b75 start + 53
    25  ???                                 0x00000001 0x0 + 1
)
terminate called after throwing an instance of 'NSException'

发生这种情况的方法是在FirstViewController中的方法中,该方法由于按钮内的触摸事件而被调用:

-(void)showProfileView {
    NSLog( @"%@", @"Displaying profile view" ); // ***

    UAProfileView *profileView = [[UAProfileView alloc] init];

    [self presentViewController:profileView animated:TRUE completion:0];
}

UAProfielViewUIViewController的子类,并且是与适当的.xib文件一起创建的。

所以问题是,如何在我的iPhone应用程序中显示这个新视图?使用故事板不是一种选择,因为我必须支持iOS 4.0。

3 个答案:

答案 0 :(得分:3)

presentViewController:animated:completion:的文档指出它仅在iOS 5.0及更高版本上受支持。您提到了对iOS 4.0的支持。

请尝试使用presentModalViewController:animated:。或者,使用nagivationController并执行pushViewController:animated:

答案 1 :(得分:2)

@Mike,确保将笔尖连接到文件的所有者。

答案 2 :(得分:1)

据推测,UAFirstViewController的基类也是UIViewController?在构建时是否收到任何警告?

我个人会使用completion:nil,但我认为这不会有所作为。

所以,如果你没有收到任何警告,那就打开僵尸,看看你是否正在处理一个死对象。说明在这里

How to enable NSZombie in Xcode?

运行程序,看看你是否在控制台中收到了僵尸警告。如果是这种情况,则内存管理是错误的。

如果所有这些都没问题,请将代码发布到调用showProfileView的位置。