0

我正在开发 iPhone 应用程序。该应用程序在前 6 或 7 分钟内运行良好,但之后我的应用程序的某些功能不起作用。例如,我在我的应用程序中使用 NSTimer 使用时钟音效,它可以工作 6 或 7 分钟,然后它会自动静音和 Second EXp 这段代码,

   -(IBAction)retryagain
   {    
    PlistDemoViewController *sec=[[PlistDemoViewController alloc] initWithNibName:@"PlistDemoViewController" bundle:nil];
    [self presentModalViewController:sec animated:YES];
    [sec release];
    }

此代码在 6 或 7 分钟之前运行良好。但在那之后它崩溃了,我的控制台看起来像这样。

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason:
'Could not load NIB in bundle: 'NSBundle </Users/moon/Library/Application
Support/iPhone Simulator/4.1/Applications/B4AA89F7-E4C8-47D1-B50E-291236543EBF
/PlistDemo.app> (loaded)' with name 'PlistDemoViewController''


              *** Call stack at first throw:
(
0   CoreFoundation                      0x029cbb99 __exceptionPreprocess + 185
1   libobjc.A.dylib                     0x027c040e objc_exception_throw + 47
2   CoreFoundation                      0x02984238 +[NSException raise:format:arguments:] + 136
3   CoreFoundation                      0x029841aa +[NSException raise:format:] + 58
4   UIKit                               0x004c84f8 -[UINib instantiateWithOwner:options:] + 2024
5   UIKit                               0x004c9eb5 -[NSBundle(UINSBundleAdditions) loadNibNamed:owner:options:] + 168
6   UIKit                               0x0037f95f -[UIViewController _loadViewFromNibNamed:bundle:] + 70
7   UIKit                               0x0037d675 -[UIViewController loadView] + 120
8   UIKit                               0x0037d54f -[UIViewController view] + 56
9   UIKit                               0x0037ede3 -[UIViewController viewControllerForRotation] + 36
10  UIKit                               0x0037b026 -[UIViewController _visibleView] + 90
11  UIKit                               0x006411d2 -[UIClientRotationContext initWithClient:toOrientation:duration:andWindow:] + 269
12  UIKit                               0x002f9d17 -[UIWindow _setRotatableClient:toOrientation:duration:force:] + 921
13  UIKit                               0x0056c67b -[UIWindowController transition:fromViewController:toViewController:target:didEndSelector:] + 768
14  UIKit                               0x0038110d -[UIViewController presentModalViewController:withTransition:] + 2937
15  PlistDemo                           0x00002cd3 -[PlistDemoViewController retryagain] + 115
16  UIKit                               0x002d37f8 -[UIApplication sendAction:to:from:forEvent:] + 119
17  UIKit                               0x0035ede0 -[UIControl sendAction:to:forEvent:] + 67
18  UIKit                               0x00361262 -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 527
19  UIKit                               0x0035fe0f -[UIControl touchesEnded:withEvent:] + 458
20  UIKit                               0x002f73d0 -[UIWindow _sendTouchesForEvent:] + 567
21  UIKit                               0x002d8cb4 -[UIApplication sendEvent:] + 447
22  UIKit                               0x002dd9bf _UIApplicationHandleEvent + 7672
23  GraphicsServices                    0x03516822 PurpleEventCallback + 1550
24  CoreFoundation                      0x029acff4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 52
25  CoreFoundation                      0x0290d807 __CFRunLoopDoSource1 + 215
26  CoreFoundation                      0x0290aa93 __CFRunLoopRun + 979
27  CoreFoundation                      0x0290a350 CFRunLoopRunSpecific + 208
28  CoreFoundation                      0x0290a271 CFRunLoopRunInMode + 97
29  GraphicsServices                    0x0351500c GSEventRunModal + 217
30  GraphicsServices                    0x035150d1 GSEventRun + 115
31  UIKit                               0x002e1af2 UIApplicationMain + 1160
32  PlistDemo                           0x00002a5e main + 84
33  PlistDemo                           0x00002a01 start + 53
34  ???                                 0x00000001 0x0 + 1
    )

terminate called after throwing an instance of 'NSException'
Program received signal:  “SIGABRT”.
Data Formatters unavailable (Error calling dlopen for: "/Developer/Applications    /Xcode.app/Contents/PlugIns/GDBMIDebugging.xcplugin/Contents/Resources/PBGDBIntrospectionSupport.A.dylib": "dlopen(/Developer/Applications/Xcode.app/Contents/PlugIns/GDBMIDebugging.xcplugin/Contents/Resources/PBGDBIntrospectionSupport.A.dylib, 10): no suitable image found.  Did find:
/Developer/Applications/Xcode.app/Contents/PlugIns/GDBMIDebugging.xcplugin/Contents/Resources/PBGDBIntrospectionSupport.A.dylib: open() failed with errno=24")
 (gdb)  

任何人都可以指导我解决这个问题吗?

4

2 回答 2

1

编辑2:

你会尝试使用这段代码吗?

PlistDemoViewController *sec= [[PlistDemoViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:sec animated:YES];

由于您的笔尖以您的控制器命名,因此应该这样做;我只希望,不要崩溃...

编辑:

如果您仔细阅读错误消息:

'无法在包中加载NIB:'NSBundle(已加载)',名称为'PlistDemoViewController

它说找不到 PlistDemoViewController。

你能检查名字拼写是否正确吗?

旧答案:

您正在PlistDemoViewController retryagain方法中呈现模态视图,但它失败了。我的建议是让您检查您传入的所有参数,并仔细检查您尝试显示的 xib 的定义。

于 2012-06-19T13:50:45.457 回答
0

您用来安排计时器的时间间隔是多少。

实际上以动画方式呈现视图控制器需要一些时间。

请在您的时间间隔上再增加 5 秒,或者在没有动画的情况下向您展示视图控制器。我认为这可以帮助你。

于 2012-06-20T09:00:56.403 回答