我正在使用RSS應用程序,需要通過消息發送文章的URL。我到目前爲止這段代碼,iOS中的消息應用程序無法正常工作
MFMessageComposeViewController *controller = [[MFMessageComposeViewController alloc] init] ;{
if([MFMessageComposeViewController canSendText])
{
controller.body = @"Check Out This Informtaion, %@", [NSURL URLWithString:self.feedItem[@"url"]];
controller.recipients = [NSArray arrayWithObjects: nil];
controller.messageComposeDelegate = self;
[self presentModalViewController:controller animated:YES];
}}
,它會工作,它開闢了應用程序內的消息,但所有它在郵件中說的是
Check Out This Information, %@
當我做同樣的
[NSURL URLWithString:self.feedItem[@"url"]];
對外開放的頁面在Safari瀏覽器,它的工作原理,這樣是正確的,但我不知道如何解決它,請HEL頁。
我會在幾分鐘內嘗試這個,現在無法訪問我的Mac,謝謝 – Steve 2013-03-15 01:02:13
當我在想它時,你們是否知道一個堆棧溢出的問題,用於實現Safari瀏覽器ios中的共享按鈕應用程序。帶有圖標和不同分享選項的那個。 – Steve 2013-03-15 01:07:26
是對UIActivityViewController的搜索 – 2013-03-15 02:32:04