Mixing C functions in an Objective-C class - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:20:44Z http://stackoverflow.com/feeds/question/801976 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/801976/mixing-c-functions-in-an-objective-c-class 2 Mixing C functions in an Objective-C class rjstelling 2009-04-29T11:44:42Z 2009-05-06T10:11:43Z <p>I am writing an Objective-C class but is uses an API written in C. This is mostly fine as mixing C calls with Objective-C calls causes few problems.</p> <p>However one of the API call requires a call back method (example):</p> <pre><code>success = CFHostSetClient(host, MyCFHostClientCallBack, &amp;context); </code></pre> <p>Where <code>MyCFHostClientCallBack</code> is a C function defined like this:</p> <pre><code>static void MyCFHostClientCallBack(CFHostRef host, CFHostInfoType typeInfo, const CFStreamError *error, void *info); </code></pre> <ol> <li>Can/How do I call an Objective-C method in place of this?</li> <li>Can/Should I mix C function in with my Objective-C call?</li> <li>How do I mix C function with Objective-C methods?</li> </ol> http://stackoverflow.com/questions/801976/mixing-c-functions-in-an-objective-c-class/802020#802020 2 Answer by Marc Charbonneau for Mixing C functions in an Objective-C class Marc Charbonneau 2009-04-29T11:58:05Z 2009-04-29T11:58:05Z <p>What I've always found helpful in this situation is to make an Obj-C wrapper on top of the C API. Implement what you need to using C functions, and build an Objective-C class (or two) on top of it, so that's all the outside world will see. For example, in the case of a callback like this, you might make a C function that calls Obj-C delegate methods on other objects.</p> http://stackoverflow.com/questions/801976/mixing-c-functions-in-an-objective-c-class/802059#802059 4 Answer by diciu for Mixing C functions in an Objective-C class diciu 2009-04-29T12:05:39Z 2009-04-29T12:05:39Z <p>To call Objective-C code from a C callback I would use something like:</p> <pre><code>void * refToSelf; int cCallback() { [refToSelf someMethod:someArg]; } @implementation SomeClass - (id) init { self = [super init]; refToSelf = self; } - (void) someMethod:(int) someArg { } </code></pre> http://stackoverflow.com/questions/801976/mixing-c-functions-in-an-objective-c-class/828943#828943 4 Answer by rjstelling for Mixing C functions in an Objective-C class rjstelling 2009-05-06T10:11:43Z 2009-05-06T10:11:43Z <p>Mixing C and Objective-C methods and function is possible, here is a simple example that uses the SQLite API within an iPhone App: (<a href="http://www.stanford.edu/class/cs193p/cgi-bin/index.php" rel="nofollow">course site</a>)</p> <p><a href="http://www.stanford.edu/class/cs193p/downloads/09-MySQLiteTableView.zip" rel="nofollow">http://www.stanford.edu/class/cs193p/downloads/09-MySQLiteTableView.zip</a></p> <p>C functions need to be declared outside of the <code>@implementation</code> in an Objective-C (.m) file.</p> <pre><code>int MyCFunction(int num, void *data) { //code here... } @implementation - (void)MyObjectiveCMethod:(int)number withData:(NSData *)data { //code here } @end </code></pre> <p>Because the C function is outside of the <code>@implementation</code> it cannot call methods like </p> <pre><code>[self doSomething] </code></pre> <p>and has no access to ivars.</p> <p>This can be worked around as long as the call-back function takes a <code>userInfo</code> or <code>context</code> type parameter, normally of type <code>void*</code>. This can be used to send any Objective-C object to the C function.</p> <p>As in the <a href="http://www.stanford.edu/class/cs193p/downloads/09-MySQLiteTableView.zip" rel="nofollow">example</a>, this can be manipulated with normal Objective-C operations.</p> <p>In addition please read this answer: <a href="http://stackoverflow.com/questions/801976/mixing-c-functions-in-an-objective-c-class/802059#802059">http://stackoverflow.com/questions/801976/mixing-c-functions-in-an-objective-c-class/802059#802059</a></p>