A: 

Strange... It looks like it is just one pixel to the left. If you have verified the image sizes then maybe just try extending it further out to see if it covers it. It appears to me that the default blue selection is showing through. This either means that the image is not big enough or the over state actually moves the image slightly to have the appearance of selection. It also looks like it might be a border.

You might also look at using contentView to fully customize the cell.

If it is a border issue your answer is in this thread: http://stackoverflow.com/questions/400965/how-to-customize-the-background-border-colors-of-a-grouped-table-view

Ryan Christensen
I have already checked the images, they are 320. I even tried setting them to wider, doesn't help. What do you mean by using contentView. Any example?
erotsppa
Yeh it has to be a border thing. Maybe change the selected color to black so it doesn't show the default blue. For the contentView here is a custom UiTableViewCell sample: http://idevkit.com/forums/tutorials-code-samples-sdk/30-custom-uitableviewcell.html
Ryan Christensen
How do you set selected color? I can only find selection style, and there's only three choice, blue grey or none. In the case of none, no selection is allowed including my own images. What exactly am I looking for in the contentView. I am familiar with writing the contentView programtically, but just not sure what to change to overcome this.
erotsppa
Try grey just for giggles. I read elsewhere that this solved someones issue with select state. You can change all the colors and specifics only with a custom view.
Ryan Christensen
A: 

Yeah, as Ryan says, it looks like you haven't quite set the correct size for the width of the selected cell row image. The blue line you're seeing is the default blue UITableViewCellSectionStyle... You can also try and force it to 'None' in your code:

cell.selectionStyle = UITableViewCellSelectionStyleNone;

Although I would think you're still going to have that gap.

From what I can see, nice graphics :)

Canada Dev
Setting UITableViewCellSelectionStyleNone will ignore the image on selection property all together (i.e. click it will not show another image). And thanks :)
erotsppa
A: 

Maybe because positioning using non-rounded floats? Might be a good idea to round to the nearest integer/pixel.

Or you have something in your drawRect method that should not be there? Had an issue like this recently.

Dylan