Quote:
Originally Posted by niharG
Thanks a lot for the code Shmoopi! I've been poring over it for the last half hour or so, and I'm very interested in implementing these checks. The only thing is, I have never worked with C code within an xcode project. I'm quite familiar with C, but I don't really understand how to implement these methods in an Objective-C environment. Can you briefly explain how/where I should implement this code in my app? I would assume that most of these checks would be run in the applicationDidFinishLaunching: method in the app delegate, but I'm not really sure how to run some of that C code.
If this is too specific of a question or the answer could help pirates defeat the code, feel free to PM it to me instead.
Thanks!
|
Good question, you can post these methods anywhere you like. They can go in the Application Delegate, any of the view controllers, or even the main file. Personally I put some in every file in the viewDidLoad's, and maybe one or two throughout the application. Good luck with your app!