I have Xcode project, that don't have any classes. It just run static framework from main.m:
int main(int argc, char *argv[])
{
start(argc, argv);
}
How I can add for example push notifications to this project ? Im able to add my own classes and execute a code inside +(void)load, that will be launched before main.m But I am unable to run this code as a parallel thread.
May be I should create AppDelegate, but how to run this framework from AppDelegate ?
-alex