我想包括Apple Push Notifications
在我的iOS
應用程序後面this example。德爾福蘋果推送通知不工作在iOS上,而在Android上工作
經過一些調試後,我發現APushService
在iOS
上運行時爲空,但在Android
上運行時沒有。
procedure TFormLogin.Button1Click(Sender: TObject);
var
APushService : TPushService;
begin
APushService := TPushServiceManager.Instance.GetServiceByName(TPushService.TServiceNames.APS);
end;
我做錯了什麼?我們如何在Delphi上啓用iOS的推送通知?
任何想法將不勝感激。
怎麼可能讓'GetServiceByName'找不到服務? – Machado
我不知道。我沒有源代碼,但是你有。嘗試尋找* System.PushNotification.pas *尋找線索。也許該名稱的服務不存在。也許你的應用程序沒有足夠的權限來查看結果。 –