I am trying to use the solution on the following page: UITextView highlightedTextColor or similar option?
然而,我发现当我在UITextView上调用 SetTextColor 并设置颜色到除彩色黑色以外的任何颜色时, UITextView 中的内容似乎有所改变,而我设置的颜色却不取而代之。
我可以通过修改我的UITableViewCell的以下初始化代码来重复这种行为:
_notesTextView = [[UITextView alloc] initWithFrame:CGRectZero];
[_notesTextView setFont:[UIFont systemFontOfSize:12.0]];
[_notesTextView setTextColor:[UIColor redColor]];
[_notesTextView setUserInteractionEnabled:NO];
[self.contentView addSubview:_notesTextView];
上面的代码将使文本View 显示我期望的偏移, 与我将默认颜色或设置为黑色颜色时相比, 文本也不会显示为红色 。
这太奇怪了 - 知道会有什么问题吗?