error: can't allocate region

malloc: *** mmap(size=1431658496) failed (error code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
*** Assertion failure in -[UISectionRowData refreshWithSection:tableView:tableViewRowData:], /SourceCache/UIKit_Sim/UIKit-1914.84/UITableViewRowData.m:377

主要问题为,在tableview的方法中
numberOfRowsInSection:此方法根据数组返回对应的行数。在此一行显示多个自定义cell时候,需要判断数组是否为0,在if中加入[Array count]!=0即可

原文地址:https://www.cnblogs.com/ygm900/p/3101413.html