Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There seems to be a ton of questions on this but I am not able to use anyone else's answers so was hoping someone could review how I am doing this. I am trying to use. I have two custom UITableViewCells which right now just have a BOOL property on them and thats it in the way of styling.

Within my cellForRowAtIndexPath method based on what type of data is coming back I am styling my cells. If the data is a "month" header its a long skinny looking cell and if its a "news item" its going to be a larger white looking cell.

enter image description here

When the table loads everything looks great but if I scroll down to create more cells and then scroll back up the cells are being recreated and eventually scrolling slows down because I am running out of memory.

When I set break points the dequeueReusableCellWithIdentifier always returns nil so my cells are never reused which seems to be a problem.

In this picture you can see that cells are getting stacked on top of each other and messed up:

enter image description here

Here my my code:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *NewsCellIdentifer = @"NewsCellIdentifier";
    static NSString *MonthCellIdentifier = @"MonthCellIdentifier";


    NSUInteger row = [indexPath row];
    NewsItem *item = [self.newsArray objectAtIndex:row];

    if (item.IsMonth == YES)
    {
        NewsMonthUITableViewCell *cell = [self.mytableView dequeueReusableCellWithIdentifier:MonthCellIdentifier];

        if (cell == nil)
        {
            cell = [[NewsMonthUITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MonthCellIdentifier];
        }

        // This handles any other "date" cells to allow for different spacing styles.
        if (item.IsMonth)
        {
            UIImageView *av = [[UIImageView alloc] initWithFrame:CGRectMake(0, 10, 400, 20)];
            av.backgroundColor = [UIColor clearColor];
            av.opaque = NO;
            av.image = [UIImage imageNamed:@"month-bar-bkgd.png"];
            UILabel *monthTextLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 150, 20)];;
            CGFloat font = 11.0f;
            monthTextLabel.font = [BVFont HelveticaNeue:&font];
            monthTextLabel.backgroundColor = [UIColor clearColor];
            monthTextLabel.font = [BVFont HelveticaNeue:&font];
            monthTextLabel.textColor = [BVFont WebGrey];
            monthTextLabel.text = item.Title;

            cell.backgroundColor = [UIColor clearColor];
            [cell.contentView addSubview:av];
            [cell.contentView addSubview:monthTextLabel];
        }

        return cell;

    }
    else
    {
        NewsUITableViewCell *cell = [self.mytableView dequeueReusableCellWithIdentifier:NewsCellIdentifer];

        if (cell == nil)
        {
            cell = [[NewsUITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:NewsCellIdentifer];
        }

        cell.contentView.backgroundColor = [UIColor clearColor];

        UIView *whiteRoundedCornerView = [[UIView alloc] initWithFrame:CGRectMake(10,10,300,100)];
        whiteRoundedCornerView.backgroundColor = [UIColor whiteColor];
        whiteRoundedCornerView.layer.masksToBounds = NO;
        whiteRoundedCornerView.layer.cornerRadius = 3.0;
        whiteRoundedCornerView.layer.shadowOffset = CGSizeMake(-1, 1);
        whiteRoundedCornerView.layer.shadowOpacity = 0.5;

        [cell.contentView addSubview:whiteRoundedCornerView];
        [cell.contentView sendSubviewToBack:whiteRoundedCornerView];
        [cell.contentView addSubview:[self NewsItemThumbnailView:item]];
        [cell.contentView addSubview:[self NewsItemTextView:item]];
        [cell.contentView addSubview:[self NewsItemCornerIconIndicatorView:item]];

        return cell;

    }

    return nil;

}

Thanks for any assistance or advice!

share|improve this question
are you using storyboard? – Ravindra Bagale Feb 27 at 16:55
1  
Are you using Storyboards with dynamic prototypes? If so, check that each cells "Identifier" in the Attributes Inspector is set correctly. Also, if you are NOT using storyboards and dynamic prototypes, your code that creates and adds sub-views should go INSIDE your if (cell==nil) block. My advice is to use Storyboards with dynamic prototypes and do the customisation in the cells in IB. – Robotic Cat Feb 27 at 16:57
I am using Storyboard but I am not using Prototyped cells or designing my cells in storyboard. I just have my TableView dropped on the screen but programmatically doing the rest. – Flea Feb 27 at 16:57
Robotic Cat, moving the code within the cell==nil block fixed it. If you post that as the answer I can mark it for you. – Flea Feb 27 at 17:06
1  
@RoboticCat: when you use prototype cells, there is no requirement of cell==nil condition, because we are allocating minimum one cell on the storyboard.with prototype cells this condition never been true – Ravindra Bagale Feb 27 at 17:10
show 2 more comments

3 Answers

up vote 2 down vote accepted

As you are using Storyboards WITHOUT dynamic prototypes then you need to place your code that creates and adds sub-views INSIDE your if (cell==nil) block. Otherwise all the sub-views are added again each time the tableview cell is re-used.

Going forwards, my advice is to use Storyboards with dynamic prototypes (with sub-classed UITableViewCells) and do the customisation in the cells in IB.

share|improve this answer

cast your cells to Customcells,and use only tableView see below example.

   NewsMonthUITableViewCell *cell = (NewsMonthUITableViewCell *)[tableView dequeueReusableCellWithIdentifier:MonthCellIdentifier];
  NewsUITableViewCell *cell =(NewsUITableViewCell*) [tableView dequeueReusableCellWithIdentifier:NewsCellIdentifer];

Use dynamic prototype cells , for prototype cells there is no requirement of cell allocation & check for proper cellIdentifier.

on storyboard create two prototype cells & give them different cellIdentifier, in your case NewsCellIdentifer & MonthCellIdentifier. be sure for the spelling of NewsCellIdentifer because you have missed i from NewsCellIdentifer.

share|improve this answer
Ravindra, thanks for the response. I just tried it but still have the same behavior. – Flea Feb 27 at 17:00
remove self from tableView – Ravindra Bagale Feb 27 at 17:03
i think its because of self.myTableView, remove it and use only tableView – Ravindra Bagale Feb 27 at 17:05
Ravindra, by moving the code into the (cell == nill) block seems to have corrected the issue. I certainly appreciate your feedback on the other comments you made and will implement your suggestions to improve on this. – Flea Feb 27 at 17:07

Interesting problem. You said your cell dequeuing is returning nil. Has this been confirmed with breakpoints or logs? Or is this a mere deduction from the images that you posted?

It would seem to me that there could be another culprit for the problem of cells stacking on top of each other and not being reused.

I can see that the whiteRoundedCornerView is created and added to the cell everytime you scroll through the cell. Even if this isn't the reason for your problem, it is definitely a problem. You are not creating cells properly. You must put this code into the if (cell == nil) block. In fact, almost all the code that lies outside of the block needs to go into it. Then any code that sets the text or image value should go outside the block. I see that someone has already made this suggestion but it has not satisfied you. I'll just emphasize again that it's still wrong and you need to fix this if you want to fix your app. (nice looking app by the way).

Also, if I may make a suggestion on other aspects of your code. You custom coded the headers and didn't use actual section headers. This is awefully odd to me. Also, you have a redundant "if (item.isMonth)" in there. Since one is already in the block of another, it will always be a month item.

share|improve this answer
Btw, if my post wasnt clear, the stacking of the whiteRoundedCornerView is what is causing those visual artifacts that you show in your screenshots. – eddieios Feb 27 at 17:35
Stupid refresh on my iPhone made me miss the fact that this already worked for you. And instead wrote up this long response. – eddieios Feb 27 at 17:38
Thanks eddieios, you are correct and I needed to put the code inside the (cell == nil) block! Thank you for taking the time to answer, I di up-tick your answer as helpful! – Flea Feb 28 at 19:25

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.