我嘗試使用下面的頁面上的解決方案: UITextView highlightedTextColor or similar option?的UITextView setTextColor改變佈局的UITableViewCell
不過,我發現,當我打電話setTextColor我的UITextView和顏色設置爲彩色blackColor其他任何,UITextView中的內容會出現偏移,而我設置的顏色不會使用。
玩的時候,我可以在我的UITableViewCell修改以下初始化代碼重複這個行爲:
_notesTextView = [[UITextView alloc] initWithFrame:CGRectZero];
[_notesTextView setFont:[UIFont systemFontOfSize:12.0]];
[_notesTextView setTextColor:[UIColor redColor]];
[_notesTextView setUserInteractionEnabled:NO];
[self.contentView addSubview:_notesTextView];
上面的代碼將導致TextView中顯示來自我所期望的偏移,與當我離開默認顏色或設置爲blackColor,文本也不顯示爲紅色。
這太奇怪了 - 任何想法可能是錯誤的?
屏幕截圖?沒有太多可以繼續。 – CodaFi