在UIWebView上启用书签(在跳板上创建快捷方式)

时间:2010-03-15 14:17:27

标签: iphone uikit uiwebview bookmarks

我不想在我的应用程序的跳板上添加快捷方式。

我正在关注的方式是加载UIWebView,然后尝试添加书签。但我无法弄清楚如何添加“+”按钮来为我的WebView内容添加书签...

有没有办法这样做?或者是否有另一种以编程方式在跳板上添加快捷方式的方法?

感谢名单。

2 个答案:

答案 0 :(得分:1)

这在SDK中是不可能的。将书签图标添加到主屏幕是Safari应用程序的一项功能,绝对不会通过UIWebView公开。

答案 1 :(得分:0)

试试这个:

    //toolbar
UIToolbar *toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 416, 320, 44)];
UIBarButtonItem *bookmarkBtn = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarks target:self action:@selector(bookmark)];
    // add btns to the bar
[toolBar setItems:[NSMutableArray arrayWithObjects:bookmarkBtn,backBtn,etc..., nil]];

// adds the toobar to the view
[self.view addSubview:toolBar];

和行动实施:

-(void)bookmarksBtn
{ [yourView yourAction]; }