UITableView で DetailTextLabel の色を変更できないようです。
フォントとサイズは変更できますが、色は変更できません。これが私のコードです:
public override UITableViewCell GetCell (UITableView tableView, MonoTouch.Foundation.NSIndexPath indexPath)
{
UITableViewCell cell = new UITableViewCell (UITableViewCellStyle.Value1, cellIdentifier);
cell.TextLabel.Text = Label;
cell.TextLabel.AdjustsFontSizeToFitWidth = true;
cell.UserInteractionEnabled = false;
cell.DetailTextLabel.Font = UIFont.SystemFontOfSize (13f);
cell.DetailTextLabel.Text = Data;
cell.DetailTextLabel.AdjustsFontSizeToFitWidth = true;
cell.DetailTextLabel.TextColor = new UIColor(0,0,0,0); // THIS BIT NEVER WORKS
// cell.DetailTextLabel.TextColor = UIColor.Black; // NEITHER DID THIS.
}
DetailTextLabel は常に灰色で表示されます。これを変更するにはどうすればよいですか?