iphone send mail in background when didUpdateToLocation occurs

后端 未结 1 1498
天涯浪人
天涯浪人 2020-12-16 08:29

I get working skpsmtpmessage(http://code.google.com/p/skpsmtpmessage/). So I can send mail in foreground.

Now I wish to send send a mail by skpsmtpmessage in backgro

相关标签:
1条回答
  • 2020-12-16 08:42

    I solve it. Put into application information property list this entry:

    <key>UIBackgroundModes</key>
    <array>
        <string>location</string>
    </array>
    
    0 讨论(0)
提交回复
热议问题