Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I try to load bookmarklet (Readability) in UIWebView. But I have some problems... Could you tell me, what's wrong here?

The article loads, but not in readability.

- (void)viewDidLoad
{
    [super viewDidLoad];

    NSString *searchURL = @"(function(){window.baseUrl='https://www.readability.com';window.readabilityToke‌​n='';var s=document.createElement('script');s.setAttribute('type','text/javascript');s.se‌​tAttribute('charset','UTF-8');s.setAttribute('src',baseUrl+'/bookmarklet/read.js');document.documentElemen‌​t.appendChild(s);})()";

    //NSURL *url =  [NSURL URLWithString:[searchURL stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding]];
    NSURL *article = [NSURL URLWithString:@"http://www.nytimes.com/2013/01/12/world/asia/us-can-speed-afghan-exit-obama-says.html?hp&_r=0"];


    // NSURL *url = [NSURL URLWithString:searchURL];
    [webview loadRequest:[NSURLRequest requestWithURL:article]];
    //[webview loadRequest:[NSURLRequest requestWithURL:url]];
    [webview stringByEvaluatingJavaScriptFromString:searchURL];


    // Do any additional setup after loading the view from its nib.
}

I will be thankful for help!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.