gpt4 book ai didi

ios - 无法分配区域 malloc

转载 作者:行者123 更新时间:2023-11-29 04:13:41 24 4
gpt4 key购买 nike

我收到此错误导致我的应用程序崩溃:

..Splash-it(1369,0x5783000) malloc: *** mmap(size=516096) failed (error code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug

我不知道为什么会出现这个错误。是内存问题错误吗?我该如何预防?“在 malloc_error_break 中设置断点进行调试”是什么意思?

感谢您的回答。

最佳答案

就我而言,我得到这个是因为当我的条件失败时,imgCount 没有获得值(value)。非 void 函数返回 imgCount 的值。

- (NSInteger)collectionView:(PSUICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
NSInteger imgCount;
if(collectionView == self.imageCollection) {
imgCount=self.imageCount;
}
return imgCount;
}

所以我通过将值分配给 imgcount 来解决它。它对我有用。

关于ios - 无法分配区域 malloc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14014137/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com