-
This application is modifying the autolayout engine from a background thread, which can lead to engine corruption and weird crashes...
屏幕快照 2016-05-16 下午5.47.17.png
屏幕快照 2016-05-17 下午2.36.15.png
屏幕快照 2016-05-18 下午4.10.19.png
屏幕快照 2016-05-26 下午4.55.54.png
屏幕快照 2016-05-27 上午9.58.55.png
屏幕快照 2016-05-31 上午9.05.12.png
屏幕快照 2016-05-31 上午9.50.31.png
屏幕快照 2016-06-04 下午6.13.05.png
2016-10-28
ShareSDK新浪微博分享sso package or sign error解决方法
想必很多人都遇到过这个错误吧,新浪微博分享的时候出现:sso package or sign error。出现这个问题是因为你在新浪微博开放平台上申请的应用的bundle identifier 和你项目的bundle identifier不一致造成的。
解决方法是,更改新浪微博开发平台上应用的bundle id
然后再运行就ok了!
2016-10-29小总结:
由于公司现在要求做第三方登录( QQ和微信的),使用shareSDK,可以获取相关第三方的账号信息,但一直奔溃,其中奔溃信息如下:
2016-10-27 11:44:43.970283 XXXt[774:128126] *** -[NSKeyedUnarchiver initForReadingWithData:]: data is NULL
就猜想是shareSDK在拿到信息后保存时出了问题,于是同事为他们客服,让更新到最新,也是我们还是version 2.X
的版本,果断升级,就好了!2---->3,版本改动挺大!!!
教训:
以后用第三方的,尽量多关注最新变动,以便更好处理bug.
2017-02-20
** iOS9UICollectionView自定义布局modifying attributes returned by UICollectionViewFlowLayout without copying them UICollectionViewFlowLayout has cached frame mismatch
This is likely occurring because the flow layout subclass MyLineLayout is modifying attributes returned by UICollectionViewFlowLayout without copying them**
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
NSArray *original = [super layoutAttributesForElementsInRect:rect];
NSArray *array = [[NSArray alloc] initWithArray:original copyItems:YES];
对array进行修改就可以了,不要对original修改
这样就不会报这个警告了
解决方案.png2017-05-06
解决Xcode断点调试值都为nil的问题
网友评论