I'm working on an iOS application where most of the backend has already been done in C++. The interface is obviously in Obj-C and I'm not sure how to use the two languages at the same time together.
Basically, I want to have a Song datamember in my Objective-C file and than perform these kind of actions to that song datamember/object:
Song song("Hardcore Beatzzz", "RockzStarsz", 60);
song.setTimeSig(4,4);
Track synthTrack;
synthTrack.setTrackName("sinussynth #1");
Note note3(880, 100, 8, 1, 17);
synthTrack.addNote(note3);
playlist.addTrack(synthTrack);
So obviously this is all C++ but how would I do this within my Objective-C files?