Apologies in advance for my noobish question.
If I am calling is_encrypted from main.m, where do I call it?
This is what my main looks like:
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
is_encrypted();
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}
|