tableView的cell選中背景色
UIColor *color = kThemeColor;
//通過RGB來定義自己的顏色
cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.frame];
cell.selectedBackgroundView.backgroundColor = color;
tableView的cell選中文字顏色
cell.titleLabel.highlightedTextColor = [UIColor whiteColor];