Mixing C functions in an Objective-C class - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T20:20:44Zhttp://stackoverflow.com/feeds/question/801976http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/801976/mixing-c-functions-in-an-objective-c-class2Mixing C functions in an Objective-C classrjstelling2009-04-29T11:44:42Z2009-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, &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#8020202Answer by Marc Charbonneau for Mixing C functions in an Objective-C classMarc Charbonneau2009-04-29T11:58:05Z2009-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#8020594Answer by diciu for Mixing C functions in an Objective-C classdiciu2009-04-29T12:05:39Z2009-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#8289434Answer by rjstelling for Mixing C functions in an Objective-C classrjstelling2009-05-06T10:11:43Z2009-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>