出現原因:主線程 postNotification ,後 將 object 賦值到 textview.text 出現的錯誤。 錯誤信息: Assertion failure in void _UIPerformResizeOfTextViewForTextContainer(NSLayoutManager , UIView , NSTextContainer , NSUInteger)(), /SourceCache/UIFoundation/UIFoundation-258.1/UIFoundation/TextSystem/NSLayoutManager_Private.m:1510
解決方法: //在主线称发送通知
//在子线程中处理代理耗时操作
dispatch_async(dispatch_get_main_queue(), ^{
//写入你的代码
})