Search code examples
iosswiftswift3

Check for running applications on ios using Swift


Is there a way to check background running applications on iOS using Swift 3/2 ?

I tried this solution : Process.swift

but its gives me errors related with permissions


Solution

  • Apps running are considered as private and you will not have permission to see the list from your app. Only the OS will have permission to access this.

    Also apple will reject your app, if you submit an app to store with this code.