首页 > 学院 > 开发设计 > 正文

AssertionfailureinUITableViewCelllayoutSublayersOfLayer解决办法

2019-11-14 18:26:55
字体:
来源:转载
供稿:网友

iOS6 设备在更新UITableViewCell的时候遇到了

Assertion failure in -[UITableViewCell layoutSublayersOfLayer:], /SourceCache/UIKit/UIKit-2380.17/UIView.m:5776

的问题,

解决方法是,把UITableViewCell里面的控件的添加方式由

[self addSubview:self.titleLabel];

改成

[self.contentView addSubview:self.titleLabel];

 

 

如果你不是在wb145230博客园看到本文,请点击查看原文.

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表