I want to create a custom cell for uitableview with an image at left side such that the following things happen
1)When the cell is selected , its height is increased , background color is changed and it gets a green color circular button at the position of accessory view
MY APPROACH :- I made a custom uiview such that it contains an imageview at the position of accessory view , and then i did
[[table cellForRowAtIndexPath:indexPath].contentView addSubview:customCellBackgroundView];
but this didnt work , because it hide the cell's text
2)the selected should remain of the same height , such that more than one cell can be selected and the selected cells have larger heights than the unselected ones