chey I am working on a ipod and i wanted to make sure that the device supports multitasking for some features to run… is there any way? I tried with this –
UIDevice* device = [UIDevice currentDevice];
BOOL backgroundSupported = NO;
backgroundSupported = device.multitaskingSupported;
but the above function not working properly its crashing on some devices… any idea?
Seems like you are using
device.multitaskingSupportedwhere it is not supported…You should check if
multitaskingSupportedis available on device or in OS before using ..You should do something like this –