Xcode Tutorial 4 - Send In-App SMS
New: this is the method to dismiss it, my bad for forgetting to put this in the video :/ - (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result { switch (result) { case MessageComposeResultCancelled: NSLog(@"Cancelled"); break; case MessageComposeResultFailed: UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"MyApp" message:@"Unknown Error" delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil]; [alert show]; [alert release]; break; case MessageComposeResultSent: break; default: break; } [self dismissModalViewControllerAnimated:YES]; } This tutorial is how to send a sms from your app without leaving it! Source Code: http://www.megaupload.com/?d=UIFFXJJF
Похожие видео
Показать еще