iOS 'Invalid section header height (nan) provided by table delegate. Value must be at least 0.0,...

问题:

'Invalid section header height (nan) provided by table delegate. Value must be at least 0.0, or UITableViewAutomaticDimension.'

原因:

出现这个bug崩溃,导致产生的原因:

1.heightForRowAtIndexPath 的行高有设置了负数

2.heightForHeaderInSection 头部高度设置了负数

3.heightForFooterInSection 尾部告诉设置了负数

解决:

1.检查上面三个方法中是否有设置了负数,

2.设置为至少为0以上的整数或UITableViewAutomaticDimension

你可能感兴趣的:(iOS 'Invalid section header height (nan) provided by table delegate. Value must be at least 0.0,...)