c++ Programming Glossary: aparameter
Calling Objective-C method from C++ method? http://stackoverflow.com/questions/1061005/calling-objective-c-method-from-c-method function you want to call from C int doSomethingWith void aParameter @end MyObject.mm #import MyObject.h @implementation MyObject.. C method int MyObjectDoSomethingWith void self void aParameter Call the Objective C method using Objective C syntax return.. using Objective C syntax return id self doSomethingWith aParameter int doSomethingWith void aParameter The Objective C function..
|