How to animate a game character using UIImageView. Video Rating: 4 / 5
Category Archives: iPhone Programming
testing iPhone simulator
testing iPhone simulator Image by jorge.correa iPhone GUI as Rich Symbols for Fireworks / iPhone SDK / iWPhone
iPhone Programming- Xcode 4: Advanced Code Snippets.
A quick tutorial teaching you how to use Code Snippets to their maximum including custom parameters and detailed explanations. Main code used: UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@”Title” message:@”Message” delegate:self cancelButtonTitle:@”Cancel” otherButtonTitles:@”Other”, nil]; [alert show]; [alert release]; Twitter: twitter.com Apple Developer Center: developer.apple.com Website: failcake.webs.com Channel: youtube.com
iPhone Programming – Making a Google Search bar
Antoher tutorial in my UIWebview Playlist. In this tutorial you will learn how to make a search bar search Google rather than load a website. It can be really usefull. Main Code Used: -(IBAction)Googlesearch:(id)sender { NSString *query = [googleBar.text stringByReplacingOccurrencesOfString:@" " withString:@"+"]; NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"www.google.co.uk query]]; NSURLRequest *request = [NSURLRequest requestWithURL:url]; [webView Read more »
iPhone Programming – UITableViews: Pushing New Table Views + EXTRA
In this UITableView tutorial I teach you how to push a new UITableView or UIView. The extra teaches you how to load different data into the table view from different arrays depending on what row is clicked. Main Code Used: In RootViewController.m: #import “PetsTableViewController.h”… Video Rating: 5 / 5
What Book should an Absolute Beginner get for iPhone Programming?
Question by Henry D’Andrea: What Book should an Absolute Beginner get for iPhone Programming? What Book should an Absolute Beginner get for iPhone Programming? Best answer: Answer by mojoYou can buy “Beginning iPhone Development: Exploring the iPhone SDK” book from amazon.It has detailed structure for beginners. Copy and paste this link in your address bar. Read more »
iPhone Programming Tutorial – Hello World & a Bouncing Ball
Get the full resolution 40 minute video here: www.enclaveforensics.com This 5 minute video is the first five minutes of a quick tutorial recorded at a SANS Institute conference. The SANS Conference was on security, but I did a 40 minute presentation on how to program the iPhone using the Apple SDK with XCode. We walk Read more »
iPhone Programming – iOS 5 Twitter Integration!
In this tutorial I teach you how to add Twitter integration into your iOS 5 apps. Main Code: -(IBAction)sendTweet { TWTweetComposeViewController *twitter = [[TWTweetComposeViewController alloc] init]; [twitter setInitialText:@"Hi Guys, This is a tweet from the iOS 5 Twitter integration tutorial. Coming Soon!"]; [twitter addURL:[NSURL URLWithString:[NSString stringWithFormat:@"youtube.com if([TWTweetComposeViewController canSendTweet]) [self presentViewController:twitter animated:YES completion:nil]; else { UIAlertView* Read more »
iPhone Programming – Easy Image Animation
Learn how to animate an image by making it transform, scale, and rotate! Subscribe to get 1 tutorial each day about iPhone Programming! Twitter: twitter.com Website: www.pixelcubestudios.com Twitter twitter.com Facebook: www.facebook.com


