I have a small issue with a UITableView and it’s background color. I am getting this strange footer at the end of the UITableView as you can see in the image below.

I’ve tried setting the border to [UIColor clearColor] but unfortunately that didn’t help. Does anyone know why this is happening? (And how to fix it?)
Have you tried changing the separator style, either in Interface Builder or programmatically by setting your UITableView’s
separatorStyleproperty?It looks like you may currently have this set to
UITableViewCellSeparatorStyleSingleLineEtched, which is documented as follows. You could tryUITableViewCellSeparatorStyleNoneinstead.