











Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
The history of security and privacy issues with the iphone, focusing on root exploits, personal data harvesting, jailbreaking, worms, and spyware. It also discusses the development process for creating iphone applications, including the use of objective-c and development tools like xcode and interface builder. The author proposes the development of a secure iphone application, implementing software security principles throughout the sdlc to enhance reliability and quality.
Typology: Slides
1 / 19
This page cannot be seen from the preview
Don't miss anything!












QuickTime™ and a decompressor are needed to see this picture.
are needed to see this picture.^ QuickTime™ and adecompressor
QuickTime™ and adecompressor are needed to see this picture.
are needed to see this picture.^ QuickTime™ and adecompressor
Poof- is an iPhone game in which the player must try to match at least three like tiles at a time in an effort to clear the board. If the player succeeds in this effort and achieves a high score they are prompted to enter their name into a high score list.
-(void) saveSettings{ NSString * path = [[NSBundle mainBundle] bundlePath]; NSString * file = [path stringByAppendingPathComponent:@"settings.plist"];
[self.settings writeToFile:file atomically:YES];
[path release]; [file release]; }
-(void) saveHighScores{ NSString * path = [[NSBundle mainBundle] bundlePath]; NSString * file = [path stringByAppendingPathComponent:@"highscores.plist"];
[self.highScores writeToFile:file atomically:YES];
[path release]; [file release]; }