带地理围栏的存折
Passbook with geofence
是否可以将存折通行证预编程到我的应用程序中,然后在用户进入特定地理围栏时激活它们?所以就像当他们进入地理围栏时,他们的 phone 上会出现一个通知,当他们点击它时,它会将他们带到添加通行证的存折。
语言- Swift
Xcode6.3
简答,是的,这是可能的。
使用CoreLocation to trigger a local push notification on entry to the geofence, and then in response to the local push present the pass using the PKAddPassesViewController。为了处理超过 20 个位置,您可以让您的应用轮询您的服务器以了解位置的重大变化并下载最近的 20 个位置。
是否可以将存折通行证预编程到我的应用程序中,然后在用户进入特定地理围栏时激活它们?所以就像当他们进入地理围栏时,他们的 phone 上会出现一个通知,当他们点击它时,它会将他们带到添加通行证的存折。 语言- Swift Xcode6.3
简答,是的,这是可能的。
使用CoreLocation to trigger a local push notification on entry to the geofence, and then in response to the local push present the pass using the PKAddPassesViewController。为了处理超过 20 个位置,您可以让您的应用轮询您的服务器以了解位置的重大变化并下载最近的 20 个位置。