我想在 iphone 中集成像 safari 这样的添加书签
这里是从 iPhone 添加 safari 浏览器的书签功能的快照我想添加类似的功能我该怎么做?
首先你需要添加一个 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 和给它网址