How to remove these horizontal lines from my UITableViews bottom?
My am seeing a horizontal line at the bottom of my table views section. I don't is it default or i accidentally have done something to that. Please开发者_如何学Go see this screen shot for clarity.
That's not the default, you've done that somehow. You've likely done it in tableView:cellForRowAtIndexPath:
. Comment it out and see if it goes away.
OK i have figured it out. This is because of the delegate method, heightForRowAtIndexPath: Once i commented that out, its gone.
try setting your tableView background to the same as the views background, that should fix it!
精彩评论