2009-10-03 27 views
0

我從iTunesconnect以下崩潰報告。 UIActivityIndi​​catorView是否被竊聽?UIActivityIndi​​catorView在iPhoneSDK竊聽? (從UIKit的崩潰)

Date/Time:  2009-09-26 12:33:02.034 +1000 
OS Version:  iPhone OS 3.0 (7A341) 
Report Version: 104 

Exception Type: EXC_CRASH (SIGABRT) 
Exception Codes: 0x00000000, 0x00000000 
Crashed Thread: 0 

Thread 0 Crashed: 
0 libSystem.B.dylib    0x31d54964 lstat + 8 
1 Foundation      0x3055baf6 _NSFileExistsAtPath 
2 Foundation      0x3055f6a2 -[NSFileManager fileExistsAtPath:] 
3 WinterBoard.dylib    0x0019f034 0x19c000 + 12340 
4 WinterBoard.dylib    0x001a032c 0x19c000 + 17196 
5 UIKit       0x30972650 +[UIActivityIndicatorView _loadResourcesForStyle:] 
6 UIKit       0x30972498 -[UIActivityIndicatorView setActivityIndicatorViewStyle:] 
7 UIKit       0x309723bc -[UIActivityIndicatorView initWithFrame:] 
8 UIKit       0x30a113f8 -[UIActivityIndicatorView initWithActivityIndicatorStyle:] 

下面是我如何創建它:

UIActivityIndicatorView *act = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge]; 
act.center = CGPointMake(160, 190); 
[act startAnimating]; 
[self addSubview:act];  
[act release]; 

回答

3

正如你可以在日誌中看到,它會錯-[NSFileManager fileExistsAtPath:]。下面的堆棧跟蹤的線,你看到它正在被Winterboard.dylib調用。

的Winterboard是越獄的iPhone修改其不支持蘋果操作系統的外觀的應用程序。在這種情況下,Winterboard應該歸咎於你的應用程序崩潰,而不是UIKit。

你不能做任何事情,它可能在的Winterboard一個錯誤,這只是一個越獄的iPhone和的Winterboard用戶可能。

相關問題