본문 바로가기

Xcode

[Xcode] UIBackgroundModes

[Error]

 

2019-06-10 21:41:28.320541+0900 Runner[4038:1247983] You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.

 

 

 

[Append info.plist]

 

<key>UIBackgroundModes</key>
<array>
  <string>audio</string>
  <string>fetch</string>
  <string>remote-notification</string>
</array>