At a specific (sequential) point, when my application is running, I receive an xcode error message in sequence
Completed due to a memory error.
I cannot find the code causing the error, but I can tell which code is close to the error (using breakpoints).
The error is caused immediately after the return of a certain cell in my execution
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
UITableViewDataSource delegate method. I can confirm that it returns a valid UITableViewCell , but I think explaining and posting all of this method would be a waste of time. However, I suspect this could be caused by a fast, massive memory allocation.
He definitely says Terminated due to memory error , not memory pressure.
I would like to know what a message means. Also, is there a way to debug this message? Failure report is not generated.
I am using ARC and iOS 7.
memory-management ios objective-c automatic-ref-counting
Santa Claus Oct 05 '13 at 23:29 2013-10-05 23:29
source share