我在didFinishLaunchingWithOptions
功能如下代碼:UITableViewCell的外觀不改變爲textLabel字體
[[[UITableViewCell appearance] textLabel]setFont:[UIFont fontWithName:@"someFont" size:12]];
但出於某種原因,這並沒有改變我的表格單元格中的文本。
如果表中委託函數cellForRowAtIndexPath
我添加
cell.textLabel.font = [UIFont fontWithName:@"someFont" size:12];
它做的字體更改爲我所希望的一個。
任何想法?
您定位的是哪個版本的iOS? – Dan
你使用自定義字體嗎? – ignotusverum
@anonymous是的我正在使用自定義字體。 – oopsi