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)

What does this error mean? It seems to happen at this line?

GContextSetFillColorWithColor(ctx, [[UIColor colorWithRed:1.0 green:0.5 blue:0 alpha:1.0] CGColor]);
Mat
  • 202,337
  • 40
  • 393
  • 406
Ayrad
  • 3,996
  • 8
  • 45
  • 86

1 Answers1

0

It means you spelt it wrong. You should have had a warning from the compiler.

hooleyhoop
  • 9,128
  • 5
  • 37
  • 58
  • yeap that's it. Warning wasn't very clear: implicit declaration of function is invalid in C99' – Ayrad Dec 24 '11 at 21:15