I have Xcode 4.3.1, iOS 5.1 and ARC
enabled to build my application.
Now the application works fine in the debug assembly, but it fails to release the assembly. What could be the reason for the difference? I just rely on ARC
for resource management. I looked at the crash log, this indicates that a memory link has already been issued. What will be the common mistakes that can cause a problem when creating a retail network when using ARC
?
The following is what I got from the crash log
Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x6f636552 Crashed Thread: 0
EDIT
The purpose of the application deployment is iOS 5.0. I use Internet connections, the current crash occurs during the "rendering" of the data returned from the web service to show on the UITableViewController
. The entire application uses ARC
, with the exception of a few source files from a third party, for which I have disabled ARC
.
source share