ios9下iPad UITableViewCell显示不正常的问
2016-01-06 本文已影响461人
歌余
设置如下代码:
if ([[UIDevice currentDevice].systemVersion doubleValue] >= 9.0)
{
_mainTableView.cellLayoutMarginsFollowReadableWidth = NO;
意思大概是:判断是否需要根据内容留有空白 解决问题
}
不正常显示如图:
IMG_0016.PNG
设置如下代码:
if ([[UIDevice currentDevice].systemVersion doubleValue] >= 9.0)
{
_mainTableView.cellLayoutMarginsFollowReadableWidth = NO;
意思大概是:判断是否需要根据内容留有空白 解决问题
}
不正常显示如图: