码迷,mamicode.com
首页 > 其他好文 > 详细

出现Assertion failure in -[***** layoutSublayersOfLayer:]

时间:2016-07-07 14:23:44      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

在自定义的view中使用了[self layoutIfNeeded]方法,在iOS8\9上都没有错误,但是在iOS7上出现了页面错乱,解决方案就是在自定义的view里面添加如下代码:

+ (void)load
{
    Method existing = class_getInstanceMethod(self, @selector(layoutSubviews));
    Method new = class_getInstanceMethod(self, @selector(_autolayout_replacementLayoutSubviews));
    
    method_exchangeImplementations(existing, new);
}

- (void)_autolayout_replacementLayoutSubviews
{
    [super layoutSubviews];
    [self _autolayout_replacementLayoutSubviews]; // not recursive due to method swizzling
    [super layoutSubviews];
}

 

出现Assertion failure in -[***** layoutSublayersOfLayer:]

标签:

原文地址:http://www.cnblogs.com/ziyi--caolu/p/5649921.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!