Category Archives: iPhone Programming

iPhone Programming-Sprite Animation

How to animate a game character using UIImageView. Video Rating: 4 / 5

April 23, 2012 Posted by: Permalink

testing iPhone simulator

testing iPhone simulator Image by jorge.correa iPhone GUI as Rich Symbols for Fireworks / iPhone SDK / iWPhone

April 19, 2012 Posted by: Permalink

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

April 15, 2012 Posted by: Permalink

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 »

April 10, 2012 Posted by: Permalink

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

April 9, 2012 Posted by: Permalink

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 »

April 8, 2012 Posted by: Permalink

Objective-C iPhone Programming Tutorial – UISearchBar

I show you a basic way to use a UISearchBar to filter the contents of a UITableView. This could be expanded upon to search through a large amount of data, and support a more complex search algorithm. On a personal note, I apologize for not making a video in a few weeks. My computer has  Read more »

April 6, 2012 Posted by: Permalink

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 »

April 5, 2012 Posted by: Permalink

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 »

March 31, 2012 Posted by: Permalink

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

March 29, 2012 Posted by: Permalink