Giter Site home page Giter Site logo

Comments (6)

kolinkrewinkel avatar kolinkrewinkel commented on June 13, 2024

Add a subview-UIImageView as a property and set its image.

On Jan 7, 2013, at 1:24 AM, martinfreefall [email protected] wrote:

How do I add images to cells in kkgrid view ?


Reply to this email directly or view it on GitHub.

from kkgridview.

martinfreefall avatar martinfreefall commented on June 13, 2024

[cell.contentView addSubview:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tux.png"]]]; ??

from kkgridview.

kolinkrewinkel avatar kolinkrewinkel commented on June 13, 2024

As long as you're only doing this once, that'll work. Otherwise, you'll encounter an infinite subviews problem (for example if you do this on every call to cellForItemAtIndex:).

On Jan 7, 2013, at 10:17 PM, martinfreefall [email protected] wrote:

[cell.contentView addSubview:[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tux.png"]]]; ??


Reply to this email directly or view it on GitHub.

from kkgridview.

martinfreefall avatar martinfreefall commented on June 13, 2024

http://i1275.photobucket.com/albums/y447/martinfreefall/2013-01-08163341_zps1d72eb00.png

every cell is supposed to have the penguin . but only the last one gets populated

my code is like this

viewdidload
{
viewForcell = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tux.png"]];
}

  • (KKGridViewCell *)gridView:(KKGridView *)gridView cellForItemAtIndexPath:(KKIndexPath *)indexPath
    {
    [cell.contentView addSubview:viewForcell];
    }

from kkgridview.

zadr avatar zadr commented on June 13, 2024

A view can only be on screen once at a time; you should use a separate image view for every cell as its dequeued.

from kkgridview.

martinfreefall avatar martinfreefall commented on June 13, 2024

@zadr when using that im getting images that are over layed on each other

from kkgridview.

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.