今天在iOS工程中遇到了这样的crash,项目是flutter代码写的,挂的也是flutter的线程,一时无计可施,
libc++abi: terminating with uncaught exception of type std::bad_alloc: std::bad_alloc
经过一番搜索,终于找到了原因:http://62.234.115.194/ask/129215810.html
大概就是因为业务要申请一块很大的内容,然后系统不愿意分配,于是就抛出了这个异常,然后我看了一下内存监控,确实在执行这个操作时内存暴涨,于是就破案了
解决方案:优化这块内存,问题根源是加载了一张图片,decode后有500多m
网友评论