iphone - iOS 7 issue with autolayout -
in app support ios 7+. can't download simulator test on ios 7, because latest simulator available ios 8. works fine on ios 8 , ios 9. customer has iphone 4 ios 7 , when runs app, crashes after launch error:
auto layout still required after executing -layoutsubviews. uitableview's implementation of -layoutsubviews needs call super
i took error crashlitics report. may knows how correct that?
check layoutsubviews
methods have write , in method first call [super layoutsubviews];
. because before few month have same problem ios 7 , call [super layoutsubviews];
in custom cell have used layoutsubviews
method , working fine me.
-(void)layoutsubviews { [super layoutsubviews]; // stuff }
Comments
Post a Comment