Sponsored Links

Archives

iPhone SDK In App Emailing

All the main code you need: -(IBAction) { MFMailComposeViewController *mailMe = [[MFMailComposeViewController alloc] init]; mailMe.mailComposeDelegate = self; if ([MFMailComposeViewController canSendMail]) { [mailMe setToRecipients:[NSArray arrayWithObjects:@"unobrandon@mac.com",nil]]; [mailMe setSubject:@""]; [self presentModalViewController:mailMe animated:YES]; } [mailMe release]; } – (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error { [self dismissModalViewControllerAnimated:YES]; if (result == MFMailComposeResultSent) { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@”Message Sent!” message:@”Your message has sent! [...]

How To Setup iAds – iPhone SDK Tutorial

This is how to setup iAds. [...]

iPhone SDK – Touch Fighter

Apple iPhone SDK announcement – Scott Forstall shows what the iPhone SDK was able to accomplish with 2 weeks and less than 10000 lines of [...]

iPhone SDK Programming – Lesson 6 Part 2/3 (Creating Custom Classes)

www.timlaytonllc.com – Lesson 6 is a three part series where Tim Layton shows you how to define your own custom classes in XCode using Objective-C 2.0 and the iPhone SDK. In this lesson you will Create a New Class – Create Objects – Instantiate Objects – Call Methods. Be sure to watch all three parts for [...]

2. Hello World – iPhone SDK Tutorials

Welcome to my second tutorial, in this one i will be showing you some very basic IBOutlets and IBActions by making a button copy what you wrote from a [...]

iPhone SDK App Development Tutorial: Two Views in 3 Minutes

This is a Tutorial of how to develop an iPhone App with two views and buttons to switch in between.without any coding – Just the interface [...]

iPhone SDK Tutorial: Play Sound in an App

Hey guys, in this tutorial I am going to show you how to play a sound inside of the app with a touch of a button. Go check out my newest app in Cydia called Best of AFV! Please Comment, Rate, and Subscribe! Follow Me on Twitter: twitter.com Need an invite to Lockerz?? Go here: [...]

Iphone SDK Tutorial: Save UIWebview to Photos App

blah blah [...]

iPhone SDK UITableView Series: Push a New View From Tapping a Cell Part 1

Need an app built? Contact me at tckdeveloper@live.com and we will create or finish an app for you. Source Code: www.tckdeveloper.com Part 1 of 2. In this video you will learn how to push a new view on the screen by tapping a cell in your table, pick which view appears, and customize that view. For [...]

Running an app in the iPhone SDK simulator

Forgot to include this when I created my first video, this is a very brief video showing an app compiling and running in the [...]