Giter Site home page Giter Site logo

Comments (3)

smileyborg avatar smileyborg commented on May 16, 2024

Are you sure about [UIWebView newAutoLayoutView] returning nil? I just tested it in the sample project in the UIView+AutoLayout repository, changing the blueView property accessor in ALViewController.m to this:

- (UIView *)blueView
{
    if (!_blueView) {
        UIWebView *webView = [UIWebView newAutoLayoutView];
        [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://google.com"]]];
        _blueView = webView;
    }
    return _blueView;
}

It works exactly as you'd expect...

Please try this and let me know how it goes for you.

from tableviewcellwithautolayout.

yayoo1971 avatar yayoo1971 commented on May 16, 2024

Thanks the your prompt reply and your investment in the test, that's very appreciable!

Actually, the issue was not directly related to "UIView+AutoLayout", sorry for the confusion!

I'm facing the issue when I try to apply your autoLayout methods to an UITableViewCell containing a UILabel, a UIImageView (no problem for both obviously) and... a UIWebView.

My goal : Within a UITableViewCell, to put annotations (part of a speech) above words in a sentence and I'm guessing that the only way to go in order to preserve tableview scrolling performance and implementation simplicity is "UIWebView thanks to the very straightforward HTML RUBY TAGS" vs "UILabels over UILabels of different length" (implying tricky calculations) .

I'll give another try later this week though... by replacing one of the UILabels by an UIWebView within the "TableViewCellWithAutoLayout" project.

Cheers and greetings from Paris, France.
Y.

from tableviewcellwithautolayout.

smileyborg avatar smileyborg commented on May 16, 2024

Good luck, feel free to post any specific issues you encounter around auto layout!

from tableviewcellwithautolayout.

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.