Posts

Showing posts with the label SMS

MFMessageComposeViewController Sample Code (OS 4.0 only)

Image
Via: http://iphonesdkdev.blogspot.com/2010/04/mfmessagecomposeviewcontroller-sample.html Start a new View-based Application Project called SMS2 and have to add the MessageUI framework to the project Modify SMS2ViewController.h // SMS2ViewController.h // SMS2 #import #import #import @interface SMS2ViewController : UIViewController { UILabel *message; } @property (nonatomic, retain) UILabel *message; -(void)displayComposerSheet; @end and in SMS2ViewController.m // SMS2ViewController.m // SMS2 #import "SMS2ViewController.h" @implementation SMS2ViewController @synthesize message; /* // The designated initializer. Override to perform setup that is required before the view is loaded. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) { // Custom initialization } return self; } */ // Implement loadView to create a view hierarchy programmatically, without using a ...