I have setup a UITableView (320 wide) with a UITableViewCell created in IB, the cell is also 320 wide. After setting a background image (320 wide) in UITableViewCell (or my subclass to be correct) I have noticed that the cells fall short of the right hand side of the UI (notice the blue on the selected cell and the grey on the one above) Does anyone know what is causing this?

Cheers Gary
I was setting the seperator style and the seperator color on the UITableView, this takes 1 pixel off the cell height for the seperator and offsets the backgound by about 5 pixels to the right. If I reduce the background image thats going into the cell from 320×65 to 320×64 it fits perfectly with no offset.
The only difference between the two screens below is:
LEFT: UITableView Seperator = “None” (UITableViewCell background has no offset)
RIGHT: UITableView Seperator = “Single Line” (UITableViewCell background has offset)
DATA:
If you want use the separator your Cell Background Image needs to be 320×64, this will stop it shifting sideways and display the cell correctly.
Cheers Gary