When tapping an item(UITableView) on a iPhone 4 (retina display) the thumbnail becomes larger which have editButtonItem.
[cell.imageView setFrame:CGRectMake(7, 7, 30, 30)];
cell.imageView.image=objPhotoAlbumIcon;
Updated:
To solved this issue i have used custom image view but the problem is edit image comes over custom image while editing.
UIImageView * cusomtomImageView=[[UIImageView alloc] init];
cusomtomImageView.frame=CGRectMake(7, 7, 30, 30);
cusomtomImageView.image=objPhotoAlbumIcon;
cell addSubview:cusomtomImageView];
[cusomtomImageView release];
I need some suggestion.
After spending some few hours ,i fixed the above issue by using custom image and label in editing mode.
just need to add cell.contentView.
here is the code