2012-06-19 90 views
0

我正在iPhone應用程序上工作。此應用程序工作正常前6或7分鐘,但之後,我的應用程序的某些功能不起作用。比如我使用的NSTimer它爲6或7分鐘它會自動靜音,二EXP這個代碼,7分鐘後應用程序無法正常工作?

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

此代碼工作正常6或7 minutes.but前後使用後,在我的應用程序時鐘的聲音效果它崩潰了,我的控制檯看起來像這樣。

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) 

任何人都可以指導我解決這個問題嗎?

+0

你能檢查代碼 - [PlistDemoViewController retryagain]在第115行還是在那附近? – san

+0

@san檢查我的編輯thanx – jamil

回答

1

編輯2:

你會嘗試使用這段代碼嗎?

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

因爲你的筆尖是以你的控制器命名的,應該這樣做;我只希望,沒有崩潰......

編輯:

如果你仔細閱讀錯誤消息:

「不能在包中加載NIB:'名爲」一個NSBundle(加載) PlistDemoViewController

它表示無法找到PlistDemoViewController。

你能檢查名稱拼寫是否正確嗎?

OLD答:

您呈現在PlistDemoViewControllerretryagain方法的模式的看法和失敗。我的建議是讓你到 檢查你傳入的所有參數,並仔細檢查你試圖顯示的xib的定義。

+0

Thanx for Answer.plz檢查我的編輯。 – jamil

+0

但在6分鐘前,同樣的方法仍然正常工作@sergio – jamil

+0

Thanx @sergio我檢查了所有這些事情顯然我認爲這可能是由於一些內存泄漏。我的控制檯顯示任何內存泄漏。 – jamil

0

用於安排定時器的時間間隔是多少?

實際上動態呈現視圖控制器需要一些時間。

請在您的時間間隔內再添加5秒鐘或呈現您沒有動畫的視圖控制器。我認爲這可以幫助你。

相關問題