I have a compiled program I wrote in native c, which i can run on the my Iphone using terminal and the command "./myCApp"
Is there a way to launch it through Code?
I've tried System("./myCApp") or popen("./myCApp","r+)
and both didn't work.
I have a compiled program I wrote in native c, which i can run on the my Iphone using terminal and the command "./myCApp"
Is there a way to launch it through Code?
I've tried System("./myCApp") or popen("./myCApp","r+)
and both didn't work.
I don't think you can launch a code in device programmatically unless it has some url scheme.