2012-07-29 25 views
7

hoy estaba trabajando en xcode cuando apareció este error al iniciar la aplicación, ¿qué pasa con mi aplicación?Error: Símbolo no encontrado: ___CFObjCIsCollectable

2012-07-29 19:29:58.682 Champagne Pop[10601:1b03] Error loading /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn: dlopen(/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn, 262): Symbol not found: __CFObjCIsCollectable Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security
Expected in: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation in /System/Library/Frameworks/Security.framework/Versions/A/Security 2012-07-29 19:29:58.690 Champagne Pop[10601:1b03] Error loading /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn: dlopen(/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn, 262): Symbol not found: _
_CFObjCIsCollectable Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security
Expected in: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation in /System/Library/Frameworks/Security.framework/Versions/A/Security 2012-07-29 19:29:58.703 Champagne Pop[10601:1b03] Error loading /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn: dlopen(/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn, 262): Symbol not found: __CFObjCIsCollectable Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security
Expected in: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation in /System/Library/Frameworks/Security.framework/Versions/A/Security 2012-07-29 19:29:58.710 Champagne Pop[10601:1b03] Error loading /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn: dlopen(/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn, 262): Symbol not found: _
_CFObjCIsCollectable Referenced from: /System/Library/Frameworks/Security.framework/Versions/A/Security
Expected in: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation in /System/Library/Frameworks/Security.framework/Versions/A/Security

Respuesta

3

Trate de añadir en su proyecto un

Security.framework

CoreFoundation.framework

de la carpeta Simulador

+0

Esto no ayudó en mi caso. – fsharp

+0

Parece que intenta compilar para Simulator? – CReaTuS

12

como respondida here trata de un error en el simulador de iOS, pero no es un problema cuando se ejecuta en el dispositivo real. Esta falla persiste al menos a través de Xcode 4.4.1 y iOS 5.1 SDK.

4

Quite los puntos de interrupción del depurador & vuelva a ejecutar. Esto funcionó para mí. Aparentemente, el problema está funcionando en iOS6 y también debería estar bien en el dispositivo.

+0

Esto no funcionó para mí. – DavidH

+0

¿Estás en iOS6 o 7? Este fue un viejo problema, no recuerdo en qué versión de iOS6 funcionó. – ardochhigh

0

Elimine los puntos de interrupción del depurador & vuelva a ejecutar. Esto funcionó para mí. Aparentemente, el problema está funcionando en iOS6 y también debería estar bien en el dispositivo.

Este es mi problema. Eliminar el punto de interrupción, eso está bien.

Cuestiones relacionadas