apple apps with C++

hey guys i want to make apps for apple but with C++ as i prefer it then objective c if there is any way that u can could u give me some help even an example
closed account (o1vk4iN6)
You can use objective-c++ which will let you use C++, if you are using xcode, by renaming the sources from .m to .mm it will use the Obj-C++ compiler instead of Obj-C. To ensure any included header files in the source also use Obj-C++. Than naming any C++ sources .cpp will use the C++ compiler. You still need to use obj-C++ for any iOS specific code, unless there are equivalent C libraries, such as opengl which iOS still uses C syntax.
Topic archived. No new replies allowed.