Giter VIP home page Giter VIP logo

Comments (5)

TimOliver avatar TimOliver commented on August 19, 2024

Inherit...? You mean you're trying to subclass it?

What are you trying to do exactly? I never thought there would be a need to subclass it...

from towebviewcontroller.

cherishloveyou avatar cherishloveyou commented on August 19, 2024

Yes i want subclass it, because i need communication with the JavaScript .To this problem, I need more test. In UIWebviewController everything is ok , but when i subclass TOWebViewController, something wrong!

from towebviewcontroller.

TimOliver avatar TimOliver commented on August 19, 2024

Ahh I see!

If all you need to do is JavaScript communication with the UIWebView, you shouldn't have to subclass it. The UIWebView is exposed as a class property for that reason.

TOWebViewController *webController = [TOWebViewContoller alloc] initWithURLString:@"http://www.google.com"];
[webController.webView stringByEvaluatingJavaScriptFromString:@"document.write(\"Hello World\");"];

Something like that should work fine.

I never designed the class with the intention of people subclassing it, so I have no idea what could be happening there (As long as you're calling super in any methods you override, it SHOULD be fine).

In any case, let me know if that still doesn't fix your problem.

from towebviewcontroller.

cherishloveyou avatar cherishloveyou commented on August 19, 2024

Thanks. I shouldn't subclass it,if I do that and override shouldStartLoadWithRequest didFailLoadWithError webViewDidFinishLoad, it cause the webView never load end.

from towebviewcontroller.

TimOliver avatar TimOliver commented on August 19, 2024

Ahhh okay. Yep, that would do it.

The TOWebViewController classes already uses the UIWebView's delegate property, so if you override any of those delegate methods and don't call super, it'll break.

That being said, something like this should work:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
    //Custom code here

    return [super webView:webView shouldStartLoadWithRequest:request navigationType:navigationType];
}

from towebviewcontroller.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.