App crash in IOS. Need help in further debugging

Hi,

I have created an App for IOS which makes a call to Integration Server (HTTP post), gets business data (in JSON), parse the data and put it into SQLite database.

Whenever I click on the button to download business data from Server, the app crashes. I managed to get the console output during crash.
Here it is:

Aug 30 07:16:00 Administrators-iPad ReportCrash[1982] : Formulating crash report for process SyncClientTestApp01UniversalEN[1980]
Aug 30 07:16:00 Administrators-iPad com.apple.launchd[1] (UIKitApplication:com.softwareag.mobiledev.syncclienttestapp01[0x428b][1980]) : (UIKitApplication:com.softwareag.mobiledev.syncclienttestapp01[0x428b]) Job appears to have crashed: Segmentation fault: 11
Aug 30 07:16:00 Administrators-iPad backboardd[26] : BKSendGSEvent ERROR sending event type 23: (ipc/send) invalid destination port (0x10000003)
Aug 30 07:16:00 Administrators-iPad backboardd[26] : Application ‘UIKitApplication:com.softwareag.mobiledev.syncclienttestapp01[0x428b]’ exited abnormally with signal 11: Segmentation fault: 11
Aug 30 07:16:00 Administrators-iPad backboardd[26] : BKSendGSEvent ERROR sending event type 23: (ipc/send) invalid destination port (0x10000003)
Aug 30 07:16:00 Administrators-iPad ReportCrash[1982] : libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
Aug 30 07:16:00 Administrators-iPad ReportCrash[1982] : Saved crashreport to /var/mobile/Library/Logs/CrashReporter/SyncClientTestApp01UniversalEN_2013-08-30-071559_Administrators-iPad.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0

I’m quite new for Mobile App development as well as for IOS. I read in some internet forums that the above errors are related to wrong Memory management. Either the app has a memory leak or uses more memory. I also found that there is something called Automatic Reference Counting (ARC) which inserts memory management code at compile time.

We write java code at the mobile designer side and upload the whole project to Mobile Administrator server. The questions I have are:

  1. How the java code is converted into Ojective-C or to a formate that runs in IOS? What all happens in between and how we can influence the compiler to use certain parameters?
  2. Do you have any suggestion on how the above application should be debugged further?
  3. Any help or article to analyse crash dump would be helpful.

Thanks in advance,
Siva