Pregunta

Estoy usando XCode 4.2 e intento agregar la biblioteca parsekit a mi proyecto, esto es lo que hice:

  1. Arrastra ParseKit.xcodeproj a mi proyecto en XCode como un subproyecto.
  2. Agregar libparsekit.a al enlace binario con la lista de bibliotecas
  3. Al intentar compilar, todo sigue funcionando.

Añadiendo esto a mi código:

#import <ParseKit/ParseKit.h>

Luego intenté escribir algo de código, y la función de autocompletar funciona, así que debe haber encontrado la biblioteca ... Pero cuando compilo, aparece este error:

'ParseKit/ParseKit.h' file not found

También intenté reemplazar la importación con las siguientes líneas de código, pero nada funcionó, todas dieron el mismo error ...

#import "ParseKit/ParseKit.h"
#import "ParseKit.h"
#import <ParseKit.h>

¿Alguien tiene una idea sobre cómo resolver este problema?

Aquí hay un video sobre cómo importé ParseKit a mi proyecto: http://youtu.be/xjF8c2vo9vA

¿Fue útil?

Solución

Desarrollador de ParseKit aquí.Consulte las instrucciones para ParseKit en iOS aquí:

http://parsekit.com/iphone.html

Aunque las instrucciones son de Xcode 3, creo que te faltan los pasos 7 y 8.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top