2011-12-24 4 views
0
"_GContextSetFillColorWithColor", referenced from: 
    -[GraphView drawLineGraphWithContext:] in GraphView.o 
ld: symbol(s) not found for architecture i386 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 

이 오류는 무엇을 의미합니까? 이 줄에서 일어나는 것 같습니까?그림으로 이상한 오류가 발생했습니다.

GContextSetFillColorWithColor(ctx, [[UIColor colorWithRed:1.0 green:0.5 blue:0 alpha:1.0] CGColor]); 

답변

0

철자가 틀렸음을 의미합니다. 컴파일러로부터 경고를 받았어야합니다.

+0

yeap that 's. 경고는 명확하지 않았습니다. C99에서 함수의 암시 적 선언이 유효하지 않습니다. – Ayrad

관련 문제