Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does a "_OBJC_CLASS_$_CATransaction, referenced from:" compile-time error mean?

Can anyone please tell me what is this error, I am trying to compile on xcode

"_OBJC_CLASS_$_CATransaction", referenced from:

  objc-class-ref-to-CATransaction in RefreshTableViewHeader.o

And this error

"_kCATransactionDisableActions", referenced from:

  _kCATransactionDisableActions$non_lazy_ptr

in RefreshTableViewHeader.o

 (maybe you meant: _kCATransactionDisableActions$non_lazy_ptr)

ld: symbol(s) not found

collect2: ld returned 1 exit status

Google was of no help.

Am I missing any framework...?

like image 360
Asad Khan Avatar asked Oct 14 '10 12:10

Asad Khan


1 Answers

It is a linker error indicating that you're missing some symbols. Try to add QuartzCore framework to link with your project.

like image 56
Vladimir Avatar answered Nov 07 '22 14:11

Vladimir