티스토리 뷰
-----------------------------------------------------------------------------------------------------------------------------------------------------------------
error : <Cocoa/Cocoa.h> No such file or directory
iPhone 프로그래밍 할때
.m 과 .h 파일을 중복해서 만들기 귀찮을때
NSObject 의 subclass 로
Cocoa Class 로 생성 시킬때 접하게 되는 문제
#import <Cocoa/Cocoa.h>
해당 문장을 아래와 같이..
#import <UIKit/UIKit.h>
-----------------------------------------------------------------------------------------------------------------------------------------------------------------
error: libxml/xmlreader.h: No such file or directory
그 외 liibxml 에 관련된 문제(#include <libxml/xmlreader.h>)
Project 의 Info 창으로 이동(프로젝트 이름에서 맥+I)
Header search Paths 항목에
/usr/include/libxml2
추가
error : <Cocoa/Cocoa.h> No such file or directory
iPhone 프로그래밍 할때
.m 과 .h 파일을 중복해서 만들기 귀찮을때
NSObject 의 subclass 로
Cocoa Class 로 생성 시킬때 접하게 되는 문제
#import <Cocoa/Cocoa.h>
해당 문장을 아래와 같이..
#import <UIKit/UIKit.h>
-----------------------------------------------------------------------------------------------------------------------------------------------------------------
error: libxml/xmlreader.h: No such file or directory
그 외 liibxml 에 관련된 문제(#include <libxml/xmlreader.h>)
Project 의 Info 창으로 이동(프로젝트 이름에서 맥+I)
Header search Paths 항목에
/usr/include/libxml2
추가
-----------------------------------------------------------------------------------------------------------------------------------------------------------------
switch 사용할때 case 안에서 변수 선언 하면 에러..
switch(variable)
{
case "firstValue":
CGFloat offset = 0.3f;
}
GCC 컴파일러라서.. 이럴땐
switch(variable)
{
case "firstValue":
{
CGFloat offset = 0.3f;
}
}
중괄호 추가 >_<
-----------------------------------------------------------------------------------------------------------------------------------------------------------------
'나름 프로그래밍? > Objective-C' 카테고리의 다른 글
4. Building an Application; Model, View, Controller; Nib Files; Controls and Target-Action (January 14, 2010) (0) | 2010.04.09 |
---|---|
3. Custom Classes, Object Lifecycle, Autorelease, Objective-C Properties (January 12, 2010) (0) | 2010.04.08 |
경고창 띄우기 (0) | 2010.03.02 |
액션 시트 띄우기 (0) | 2010.03.02 |
아이폰 내부 경로 (0) | 2010.03.02 |