How to set different Background Image For Grouped Table Section..?

Nitin Gohel

Hi i am trying to set image for Background of Grouped Table-view Section's (Not for Section Header) i am using following code:-

-(void)addBackgroundViewForSectionIndex:(int)tagIndex {

    for (UIView * subview in tbl_home.subviews) {
        if(subview.tag == tagIndex)
            [subview removeFromSuperview];
    }

    CGRect sectionFrame = [tbl_home rectForSection:tagIndex];
    UIImageView *newView = [[UIImageView alloc]initWithFrame:sectionFrame];
    newView.tag = tagIndex;
    [newView setImage:[UIImage imageNamed:@"[email protected]"]];
    [tbl_home addSubview:newView];
    [tbl_home sendSubviewToBack:newView];

}

That set Image as a background but there is problem some cell is not display or newView over some cell.

i would like to set image like the below screenshot:-

enter image description here

Nitin Gohel

After some change now help with this code i successfully set the image as above image using this code:-

-(void)addBackgroundViewForSectionIndex:(int)tagIndex {

    for (UIView * subview in tbl_home.subviews) {
        if(subview.tag == tagIndex)
            [subview removeFromSuperview];
    }

    CGRect sectionFrame = [tbl_home rectForSection:tagIndex];
    UIImageView *newView = [[UIImageView alloc]initWithFrame:sectionFrame];
    newView.tag = tagIndex;
    [newView setImage:[UIImage imageNamed:@"[email protected]"]];
    [tbl_home addSubview:newView];
    [tbl_home sendSubviewToBack:newView];

}

previouselly i call this method in to cellForRowIndex so that called every time and create problem. Now i call this method in

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath

like bellow and working fine now:-

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
  [self addBackgroundViewForSectionIndex:indexPath.section];
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to set different Background Image For Grouped Table Section..?

From Dev

how to set different image background for the same section on mobiles

From Dev

how to set a table background image

From Dev

how to set a table background image

From Dev

How to set innnerhtml content to html section background image url

From Dev

How to set checkbox image while selecting table view section?

From Dev

How to set background image url and gradient on two different properties?

From Dev

How to set an image as background for different mobile screen resolutions?

From Dev

How to set background image?

From Dev

How To Set Background Image

From Dev

How do I set the background image size of a table cell in swift?

From Dev

How to set a script as Background of a concrete <section>?

From Dev

How to set a script as Background of a concrete <section>?

From Dev

How to set the background image for a SKScene?

From Dev

How to set background image in swift?

From Dev

How to set a background image in css?

From Dev

How to set sprite as a background image?

From Dev

How to set a background image on GRUB?

From Dev

How to set NSButton background image

From Dev

How to set background Image with with jquery

From Dev

How to set background image in css

From Dev

How to set a background image for urxvt?

From Dev

How to set the background image to canvas

From Dev

How to set the background behind another background image?

From Dev

How to add different background image (.png) to a SVG circle shape , and set stroke?

From Dev

How to blur the div below the section with CSS 3 without background image?

From Dev

How to join one table with grouped values from different query?

From Dev

Scale background image to section - bootstrap

From Dev

Section background image not working on firefox

Related Related

  1. 1

    How to set different Background Image For Grouped Table Section..?

  2. 2

    how to set different image background for the same section on mobiles

  3. 3

    how to set a table background image

  4. 4

    how to set a table background image

  5. 5

    How to set innnerhtml content to html section background image url

  6. 6

    How to set checkbox image while selecting table view section?

  7. 7

    How to set background image url and gradient on two different properties?

  8. 8

    How to set an image as background for different mobile screen resolutions?

  9. 9

    How to set background image?

  10. 10

    How To Set Background Image

  11. 11

    How do I set the background image size of a table cell in swift?

  12. 12

    How to set a script as Background of a concrete <section>?

  13. 13

    How to set a script as Background of a concrete <section>?

  14. 14

    How to set the background image for a SKScene?

  15. 15

    How to set background image in swift?

  16. 16

    How to set a background image in css?

  17. 17

    How to set sprite as a background image?

  18. 18

    How to set a background image on GRUB?

  19. 19

    How to set NSButton background image

  20. 20

    How to set background Image with with jquery

  21. 21

    How to set background image in css

  22. 22

    How to set a background image for urxvt?

  23. 23

    How to set the background image to canvas

  24. 24

    How to set the background behind another background image?

  25. 25

    How to add different background image (.png) to a SVG circle shape , and set stroke?

  26. 26

    How to blur the div below the section with CSS 3 without background image?

  27. 27

    How to join one table with grouped values from different query?

  28. 28

    Scale background image to section - bootstrap

  29. 29

    Section background image not working on firefox

HotTag

Archive