使用 TNotificationCenter.OnReceiveLocalNotification
Using TNotificationCenter.OnReceiveLocalNotification
我试图在 NotificationCenter 中捕获消息,以便将其用于其他目的,当我通过 gcm php 服务器收到进入我的设备的通知时,我尝试使用 NotificationCenter:NotificationCenterReceiveLocalNotification 事件但不幸的是它没有。
procedure Tdm.NotificationCenterReceiveLocalNotification(Sender: TObject; ANotification: TNotification);
begin
ShowMessage(ANotification.Name) ;
end;
知道错误是什么吗?
谢谢。
您正在尝试通过处理本地通知.
的 NotificationCenter 获取远程通知(PUSH - GCM)
要处理推送,您必须使用 TPushEvents 组件,OnPushReceived 事件,更具体。
我试图在 NotificationCenter 中捕获消息,以便将其用于其他目的,当我通过 gcm php 服务器收到进入我的设备的通知时,我尝试使用 NotificationCenter:NotificationCenterReceiveLocalNotification 事件但不幸的是它没有。
procedure Tdm.NotificationCenterReceiveLocalNotification(Sender: TObject; ANotification: TNotification);
begin
ShowMessage(ANotification.Name) ;
end;
知道错误是什么吗?
谢谢。
您正在尝试通过处理本地通知.
的 NotificationCenter 获取远程通知(PUSH - GCM)要处理推送,您必须使用 TPushEvents 组件,OnPushReceived 事件,更具体。