是否有可能讓iOS應用程序從服務中提取數據,比如說www.mysite.com/iphone/notifications
,這會產生JSON(下面僅僅是一個示例,可能是真的):從服務間隔中提取數據並顯示在通知中心
[
{
"Message":"Notification 1",
"Detail":"Notification 1 detail"
},
{
"Message":"Notification 1",
"Detail":"Notification 1 detail"
}
]
該應用程序然後會繼續註冊某種背景工作並每隔x分鐘收到一次通知。
這個概念是可能的還是我需要去槽Apple Push Notification Service
?