我有一个包含我们网站地址列表的表格视图。
我已经实现通过单击相应的单元格来打开具有单元格文本中存在的 url 的网站
如下:
NSURL *websiteURL = [NSURL URLWithString:cell.textLabel.text];
[[UIApplication sharedApplication] openURL:websiteURL];
假设http://mywebsite.com “是我手机上的文字
*
NSURL *websiteURL = [NSURL URLWithString:@"http://mywebsite.com"];
[[UIApplication sharedApplication] openURL:websiteURL];
*
它会打开正确的网页,但会退出我的活动应用程序,并打开 safari 应用程序
如果不退出网页,我就无法再次访问我的应用程序。
所以I need to present webpage with in the app just like MF Emil composer.
作为all we know MF Emil composer opens mail page and return back to active application, when click on cancel button.
我需要像 MF Emil 作曲家现在的模型一样。