如何在用户离开家中的SetSDK时收到通知?

时间:2017-03-30 23:35:33

标签: ios swift

我正在使用SetSDK向用户显示他们离开家时附近车站的可用自行车份额。我正在关注pod documentation中提供的示例,但我没有收到通知。这是我的代码,

SetSDK.instance.onDeparture(.home) { notification in
    // below is my code using the notification
    let bikeStationCount = getAvailableBikes(stationsNear: notification.location)
    showNotification(withCount: bikeStationCount.count, atStation: bikeStationCount.station)
}

但我没有让我的应用程序显示任何通知,任何想法有什么问题?

1 个答案:

答案 0 :(得分:1)

看起来你的代码是正确的。唯一要记住的是SetSDK会随着时间的推移了解用户的家,大多数用户通常需要1-2天才能有足够的确定性来呼叫家庭。

您是否有机会让SDK学到足够长的时间,以便现在就通知您?

嘿,很酷的用例!