Hi group ,i used beginSynchronize method in my code. According to info center document beginSynchronize is used for Asynchronization .
The following link shows relates beginSynchronization.
.Following is my code
SUPObjectList *uiy=[SUPObjectListgetInstance];
id<SUPSynchronizationGroup> pop1=[InspectInspectDBgetSynchronizationGroup:@"IMAGES"];
[uiy add:pop1];
NSString *ol=@"mycontext";
[InspectInspectDBbeginSynchronize:uiy withContext:ol];
According to the document beginSynchronization behaves same as Synchronization.Synchronization blocks the application where as beginSynchronization did not block the application.
So can any one guide me.