使用IB时设置textView属性崩溃

[错误]Assertion failure in void _UIPerformResizeOfTextViewForTextContainer

出現原因:主線程 postNotification ,後 將 object 賦值到 textview.text 出現的錯誤。

錯誤信息:*** Assertion failure in void _UIPerformResizeOfTextViewForTextContainer(NSLayoutManager *, UIView *, NSTextContainer *, NSUInteger)(), /SourceCache/UIFoundation/UIFoundation-258.1/UIFoundation/TextSystem/NSLayoutManager_Private.m:1510

解決方法:

1
dispatch_async(dispatch_get_main_queue(), ^{ 

//写入你的代码 

});

你可能感兴趣的:(DeBug调试)