yackle / CLImageEditor

MIT License
2.22k stars 574 forks source link

"_OBJC_CLASS_$_CLImageEditor", referenced from: #160

Closed CeoRain closed 7 years ago

CeoRain commented 7 years ago

Hello, I was trying to make a small demo.

I #import "CLImageEditor.h" and then i go like

`CLImageEditor *editor = [[CLImageEditor alloc] initWithImage:[UIImage mageNamed:@"TGoodImage"]];

editor.delegate = self;

[self presentViewController:editor animated:YES completion:nil];`

And I'm getting two error,

  1. Undefined symbols for architecture x86_64: "_OBJCCLASS$_CLImageEditor", referenced from:
  2. linker command failed with exit code 1 (use -v to see invocation)
yackle commented 7 years ago

how did you link this library?

CeoRain commented 7 years ago

Hello, thanks for responding. I link this library by #import

yackle commented 7 years ago

I think #import is nothing to do. I mean how did you add the library to your project. Can I see your project?