Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to import runtime's header to use objc_msgSend but I'm getting:

error: NSObjCRuntime.h: No such file or directory

Should I add something to the header search path?

share|improve this question

2 Answers

up vote 32 down vote accepted

You'll need to include <objc/message.h> (you'll find the related headers in /usr/include/objc) and link to the objc (/usr/lib/libobjc.dylib) library.

share|improve this answer
It worked! Can you share where did you find that? I've browsed the apple docs, google code search, and nothing ! – Piotr Czapla Feb 4 '11 at 10:04
Great answer! Thank you! – neevek Jul 25 '12 at 15:14

#import <Foundation/NSObjCRuntime.h> does work

but you probably need

#import <objc/runtime.h>

like this Apple example does

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.