반응형


iOS 4.0 이상에서만 멀티 태스킹을 지원하고 있다.

아직 많은 유져들이 iOS4.0 이하 버전을 사용하고 있다.

따라서 멀티 태스킹 지원 여부를 체크 해서 하위 버전에도 앱이 돌아 가도록 만드는 것은

프로그래머로서 아주 중요한 일이 아닐수 없다.

아래는 멀티 태스킹 여부를 체크 하는 로직이다.

UIDevice* device = [UIDevice currentDevice];
BOOL backgroundSupported = NO;
if ([device respondsToSelector:@selector(isMultitaskingSupported)])
   backgroundSupported = device.multitaskingSupported;

반응형

+ Recent posts