iOS9 tableviewcell中的textview字体无法改变问题

情景: xib自定义cell中有textview, 代码为swift, xib已经定义好字体大小和颜色, iOS10下正常显示

iOS9运行的时候, textview字体全部变成默认字体, 颜色纯黑

分析: xib中的字体设置失效, 原因不明...在willdisplaycell方法中重新写字体设置代码, 

tempcell.helpTitleLabel.font = UIFont.systemFont(ofSize: 17)


不管用...

解决: 两行代码互换顺序...先设置文本, 后设置字体就OK了...

tempcell.helpTitleLabel.text = model.ques_title

tempcell.helpTitleLabel.font = UIFont.systemFont(ofSize: 17)

你可能感兴趣的:(iOS9 tableviewcell中的textview字体无法改变问题)