我正在嘗試更改UITableViewCell
中的文本顏色,使用appearanceWhenContainedInInstancesOfClasses
作爲其應用中的主題。UItableViewCell setTextColor已棄用
下面是代碼行:
[[UITableViewCell appearanceWhenContainedInInstancesOfClasses:@[[SearchTableView class]]] setTextColor:snackOrangeColor];
這工作。但setTextColor在iOS 3.0中已被棄用。因此,我無法使用它。我還找不到合適的解決方案。
我的問題是我應該用什麼來改變UITableViewCell中的文本顏色代替setTextColor?
感謝您的幫助。
我知道這個方法。但我需要使用UIAppearance,因爲我正在爲該應用製作主題。 –
我想這是做到這一點的唯一方法。謝謝。 –