Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Memory Warnings

Discussion in 'iOS and tvOS' started by renman3000, Jun 1, 2012.

  1. renman3000

    renman3000

    Joined:
    Nov 7, 2011
    Posts:
    6,697
    HI there,
    I am just wondering about memory warnings.


    -> force accelerometer registration
    2012-06-01 12:21:48.632 bVd[992:707] Received memory warning.
    WARNING -> applicationDidReceiveMemoryWarning()
    brnManager: choseBrain();


    was recieved, in my XCode console. So, I am just wondering, since the last line is aline in my scripts, can I isolate the memory issue to that point?
     
  2. rhamm1320

    rhamm1320

    Joined:
    Mar 29, 2008
    Posts:
    44
    I'm not a expert, but I believe the typical memory warning above is no big deal, just means the os will shut down other programs. If you get a "Level 2" warning, that one you need to pay attention to and your real close to getting your own program shut down. Maybe someone else will chime in with more info
     
  3. PixelEnvision

    PixelEnvision

    Joined:
    Feb 7, 2012
    Posts:
    513
    Fyi, I also had few of those with no reason while testing our recent app... A shutdown reboot solved that for me on my test device (iPad 1).
     
  4. renman3000

    renman3000

    Joined:
    Nov 7, 2011
    Posts:
    6,697
    Thank you.