Asad Khan
Asad Khan

Reputation: 11899

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...?

Upvotes: 7

Views: 4897

Answers (1)

Vladimir
Vladimir

Reputation: 170849

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

Upvotes: 24

Related Questions