2014-11-23 64 views
0

昨天,我可以在xcode中完美运行我的项目,但是今天当我打开我的项目时,xcode总是意外退出。我的开发者帐户今天到期,这个应用程序是在我过期的帐户下生成的。我想知道这是为什么xcode相当意外的原因吗?Xcode 6.1由于开发人员帐户已过期而导致意外退出?

Process:    Xcode [1352] 
Path:     /Applications/Xcode.app/Contents/MacOS/Xcode 
Identifier:   com.apple.dt.Xcode 
Version:    6.1 (6604) 
Build Info:   IDEFrameworks-6604000000000000~2 
App Item ID:   497799835 
App External ID:  752282650 
Code Type:    X86-64 (Native) 
Parent Process:  ??? [1] 
Responsible:   Xcode [1352] 
User ID:    501 

Date/Time:    2014-11-23 00:39:18.946 -0500 
OS Version:   Mac OS X 10.10.1 (14B25) 
Report Version:  11 
Anonymous UUID:  621A224C-863D-FF01-0409-8E03669992FE 

Sleep/Wake UUID:  9C560417-B1A6-47C5-AA0D-7E5C5331F6FD 

Time Awake Since Boot: 5500 seconds 
Time Since Wake:  1800 seconds 

Crashed Thread:  0 Dispatch queue: com.apple.main-thread 

Exception Type:  EXC_CRASH (SIGABRT) 
Exception Codes:  0x0000000000000000, 0x0000000000000000 

Application Specific Information: 
ProductBuildVersion: 6A1052d 
UNCAUGHT EXCEPTION (NSInvalidArgumentException): The index 9223372036854771711 is invalid 
UserInfo: (null) 
Hints: None 
Backtrace: 

回答

0

从我所看到的崩溃日志中,它更可能只是一个无用的值。该索引是一个非常大的64位数字(0x7FFFFFFFFFFFEFFF),如果以某种方式传递给数组或其他东西,它将无效。

它最好运行/应用程序/实用程序/控制台,看看是否有任何来自Xcode的错误。他们可能有更多的细节。

通常,如果帐户过期,关联应用程序将从商店中删除,并且您无法访问开发者平台上的资源。我还没有听说过Xcode之前停过。

相关问题