login about faq


I'm working on an app for a non-profit organization I an currently interning for and so far it basically grabs data from their events calendar (on Google Calendar) and displays it in an UITableView. I had each event in a class I made called "Event" and each Event object contained the title of the event, location, start and end time and description. Each event was stored in a NSMutableArray which was stored into another NSMutableArray by month (to make it easier to categorize) and everything appeared to work fine until I fixed a type mistake on an IBOutlet and right after I renamed it and ran it again it claimed that the startTime and endTime property objects of all of the events were supposedly deallocated (zombied) even though I never touched any part of the code that would cause it so I don't know why XCode would suddenly claim it's deallocated. Also I've traced the array around my app and it appears that somehow the only location where those property objects change to deallocated is when it reaches the UITableView methods.

I've tried many crazy ways to get it to stop deallocating itself somehow including pointlessly converting it to a string and back to a NSDate object again and it still claims it's deallocated.

Is there any way I could get this fixed? Possibly some option I might have accidentally changed in XCode or something that caused it.

alt text

This question is marked "community wiki".

asked Oct 07 '11 at 03:40

nickjuly4's gravatar image

nickjuly4
95191621

wikified Oct 14 '11 at 01:40

Be the first one to answer this question!
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or __italic__
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported


Join Us in the Chat Room

Tags:

×298
×273
×151
×45
×42
×6
×1

Asked: Oct 07 '11 at 03:40

Seen: 1,030 times

Last updated: Oct 14 '11 at 01:40