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! [...]
This is how to setup iAds. [...]
Apple iPhone SDK announcement – Scott Forstall shows what the iPhone SDK was able to accomplish with 2 weeks and less than 10000 lines of [...]
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 [...]
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 [...]
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 [...]
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: [...]
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 [...]
Forgot to include this when I created my first video, this is a very brief video showing an app compiling and running in the [...]