我發送一個NSMutableString通過電子郵件的正文。 它不會工作,因爲它說senderString不能通過靜態定位。幫幫我?電子郵件NSMutableString在目標C
NSMutableString *senderString = [[NSMutableString alloc] init];
NSURL *mailURL = [NSURL URLWithString: @"mailto:[email protected][email protected]&subject=My%20Subject%20Line&body=%@"], senderString;
[[UIApplication sharedApplication] openURL: mailURL];
所以你有一個編譯器錯誤? – 2013-05-31 20:08:27
是的,錯誤是當我在所有電子郵件信息的同一行中使用senderString – rErbaugh
爲什麼不使用'MFMailComposeViewController'來允許用戶從您的應用程序發送電子郵件? – rmaddy