Reputation: 11197
I've two variables that are becoming zombies. They are declared like this:
@interface SyncPoolController : NSObject {
NSString *lastUploadQueryTime;
NSString *lastDownloadQueryTime;
NSString *pendingPkId;
NSDate *pendingTimeStamp;
MediaQueue *currentQueue;
}
This call sync data between web server and local database. If a user signs out and then sign in only this 2 variables are becoming zombies. Other variables are okay.
I don't have any idea why this is happening.
Upvotes: 0
Views: 86