Closed svrooij closed 11 years ago
I think the default color of a StyledStringElement should respect the defaults set in the Appearance class.
so this (line 860 of elements.cs) void ClearBackground (UITableViewCell cell) { cell.BackgroundColor = UIColor.White; cell.TextLabel.BackgroundColor = UIColor.Clear; }
should be changed to void ClearBackground (UITableViewCell cell) { cell.BackgroundColor = UITableViewCell.Appearance.BackgroundColor; cell.TextLabel.BackgroundColor = UIColor.Clear; }
Bump?
Good idea, let us try it out.
I think the default color of a StyledStringElement should respect the defaults set in the Appearance class.
so this (line 860 of elements.cs) void ClearBackground (UITableViewCell cell) { cell.BackgroundColor = UIColor.White; cell.TextLabel.BackgroundColor = UIColor.Clear; }
should be changed to void ClearBackground (UITableViewCell cell) { cell.BackgroundColor = UITableViewCell.Appearance.BackgroundColor; cell.TextLabel.BackgroundColor = UIColor.Clear; }