본문 바로가기

Xcode

[Xcode] UIBackgroundModes fetch

[Error]

2019-06-11 11:31:02.853505+0900 Runner[4130:1311477] You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.

 

[Solution]

append info.plist

<key>UIBackgroundModes</key>
<array>
<string>fetch</string>
</array>

 

 

'Xcode' 카테고리의 다른 글

[Xcode] SWIFT_VERSION  (0) 2019.06.13
[Xcode] UIBackgroundModes remote-notification  (0) 2019.06.11
[Xcode] FacebookAdvertiserIDCollectionEnabled  (0) 2019.06.11
[Xcode] FacebookAutoLogAppEventsEnabled  (0) 2019.06.11
[Xcode] Multiple commands produce  (0) 2019.06.11