앱이 foreground에 있을 때와 background에 있을 때 어떤 제약사항이 있나요?
iOS iOSInterviewquestions
Background Mode
- Not Running
- Foreground (Inactive, Active)
- Background
- Suspend
Foreground 제약사항
모르겠음
Background 제약사항
- 사용자에 의한 이벤트를 받지 못함
- 시간 제약이 있음: 최소 10분?, 추가 실행 시간이 필요하면
UIApplication.beginBackgroundTaskWithName:expirationHandler:
혹은UIApplication.beginBackgroundTaskWithExpirationHandler:
를 실행한다.