Rashad
Rashad

Reputation: 11197

Object are becoming zombies

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

Answers (0)

Related Questions