2

我想在 iphone 中集成像 safari 这样的添加书签在此处输入图像描述

这里是从 iPhone 添加 safari 浏览器的书签功能的快照我想添加类似的功能我该怎么做?

4

2 回答 2

4

http://xcode4all.wordpress.com/2011/05/25/web-browser-or-how-to-use-the-uiwebview-part-33/

会有帮助的

于 2012-09-03T11:08:49.577 回答
2

首先你需要添加一个 alertView

 sheet = [[UIActionSheet alloc] initWithTitle:@"Select Account to Delete"
                                      delegate:self
                             cancelButtonTitle:@"Cancel"
                        destructiveButtonTitle:@"Delete All Accounts"
                             otherButtonTitles:@"Add bookmark", @"add to reading", @"add to home screen", nil];
  // Show the sheet
  [sheet showInView:self.view];
  [sheet release];

如上图所示,这将创建一个弹出视图(AKA alertview)。

至于“添加书签”或“添加到主页”,它稍微复杂一些,因为 API 没有为您提供这样做的功能,您最好的选择是查看一个 webview 从您的应用程序中以编程方式启动 Safari 和给它网址

在这里阅读:iPhone SDK - 在 UIWebView 中添加“添加到主屏幕”按钮

于 2012-09-03T11:14:28.047 回答