Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4041736
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:55:03+00:00 2026-05-20T12:55:03+00:00

I have an app here that could be boiled down to uiscrollviews with images

  • 0

I have an app here that could be boiled down to uiscrollviews with images that you can flick through. I’m experiencing something really strange here though.

When flicking through each image (have roughly 60 of them in total), at some point the app just quits. I’m running it in XCode 4 (GM seed 2), and I’m getting no debug info, and no messages in the console at all. Turned on NSZombieEnabled, but that didn’t change anything.

I’m not even getting a crash log on the device. I’ve run it through instruments, and it doesn’t report any leaks, and my memory usage goes between 700 and 1100KB when run on the device.

I even checked each of my "pages" (the ones you flick through) and added messages at init and dealloc, and I can confirm that they’re all getting deallocated properly (only keep the current and the pages on each side loaded).

Now, this seem to mostly happen at the same point in the app when I just start at the beginning and flick through each page going right, plus or minus a few pages, all pointing toward a memory issue, I do get a memory warning from the device, but there is absolutely nothing pointing to me using a lot of memory at all, nor that there are any leaks.

I got this from the console on the device when the app quits:

Mar 8 14:13:37 unknown configd[26] : jetsam: kernel memory event (92), free: 451, active: 2894, inactive: 2267, purgeable: 0, wired: 16709

Mar 8 14:13:37 unknown configd[26] : jetsam: kernel termination snapshot being created

Mar 8 14:13:37 unknown com.apple.launchd[1] : (com.apple.AOSNotification) Exited: Killed: 9

Mar 8 14:13:37 unknown com.apple.launchd[1] : (UIKitApplication:com.apple.mobilemail[0xc2ee]) Exited: Killed: 9

Mar 8 14:13:37 unknown com.apple.launchd[1] : (UIKitApplication:no.NRC.NRCMag[0x3c6c]) Exited: Killed: 9

Mar 8 14:13:37 unknown com.apple.launchd[1] : (com.apple.dataaccess.dataaccessd) Exited: Killed: 9

Mar 8 14:13:37 unknown SpringBoard[30] : Received memory warning. Level=1

Mar 8 14:13:37 unknown SpringBoard[30] : Application ‘Perspective’ exited abnormally with signal 9: Killed: 9

Mar 8 14:13:38 unknown SpringBoard[30] : Application ‘Mail’ exited abnormally with signal 9: Killed: 9

Mar 8 14:13:38 unknown SpringBoard[30] : Memory level is not normal (60%). Delaying auto-relaunch of ‘Mail’ for 30 seconds.

Mar 8 14:13:38 unknown SpringBoard[30] : Received memory warning. Level=2

Mar 8 14:13:38 unknown kernel[0] : launchd[1253] Builtin profile: dataaccessd (sandbox)

Mar 8 14:13:39 unknown AOSN[1252] : AOSNotification Daemon Starting…

Mar 8 14:13:39 unknown AOSN[1252] : Device Information. Name: Calypso, BuildVersion: 8F190, Product Type: iPad1,1, Unique Device ID: f02b304ed9a62109de1f3efd3e1e23158a76b2d4

Mar 8 14:13:40 unknown ReportCrash[1254] : Saved crashreport to /Library/Logs/CrashReporter/LowMemory-2011-03-08-141339.plist using uid: 0 gid: 0, synthetic_euid: 0 egid: 0

Mar 8 14:13:40 unknown SpringBoard[30] : Received memory warning. Level=1

Mar 8 14:13:40 unknown dataaccessd[1253] : DA|Registered for wake notification

Mar 8 14:13:40 unknown AOSN[1252] : Push: Loading…

Mar 8 14:13:41 unknown profiled[1257] : profiled|Service starting…

Mar 8 14:13:41 unknown dataaccessd[1253] : EAS|EAS Protocol Manager set to ASProtocolUnknown

Mar 8 14:13:41 unknown dataaccessd[1253] : CalDAV|A refresh fired, but we’re still waiting on a gatekeeper lock

Mar 8 14:13:42 unknown dataaccessd[1253] : EAS|EAS Protocol Manager set to ASProtocol12_1

Now this mentions a crash report, but how do I get a hold of this when it doesn’t show up in the Organizer in XCode? And why am I getting memory warnings when Instruments (and a thorough look at my code) says that I’m not using much memory, nor leaking?

Help!

EDIT: Got 3.2.6 up and running here and the console now gives me this:

Program received signal: “0”.

Data Formatters temporarily unavailable, will re-try after a ‘continue’. (Unknown error loading shared library "/Developer/usr/lib/libXcodeDebuggerSupport.dylib")

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T12:55:04+00:00Added an answer on May 20, 2026 at 12:55 pm

    Okay, so I figured it out here, and it’s a bit silly.

    I use UIImage’s imageNamed method to load each image/page, and apparently this was causing the memory warnings.

    There’s a couple of things that bother me a bit about this.

    1. The caching is obviously a good thing, but apparently in 4.3 GM it doesn’t seem to actually empty its cache when a memory warning occurs.
    2. The memory usage building up isn’t being reported as being used by my app.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Rails app that I need to deploy. Here are the facts:
I have an app that queries the MediaStore and shows all the images in
I have an app that needs to open a new window (in the same
I have an app written in C# that lies on a network share. When
I have an app which could benefit from the user being able to choose
I have an app that executes commands on a Linux server via SSH just
I have a app that I'm deploying to a development server using Capistrano. I'd
I have an app that I was going to release as a free (lite)
I have a little app here, and I would love to be able to
I have a problem with the selected item in WPF-TabControl that could be reproduced

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.