04-22-2009, 11:26 PM
|
#2 (permalink)
|
|
Reena
Join Date: Apr 2009
Posts: 31
|
Quote:
Originally Posted by joshholat
I cam currently using
myTableView.separatorColor = [UIColor blackColor];
in my view did load method but it isn't working for some reason. Am I missing anything?
|
Try this,
myTableView.style = UITableViewStylePlain; myTableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine; myTableView.separatorColor = [UIColor blackColor];
|
|
|