ios - Registering for Push Notifications does not get any response -
this question has answer here:
i have app support push notifications under development couple of months now. push notifications worked fine until yesterday.
now application not callbacks registering apns. didregisterforremotenotificationswithdevicetoken
nor didfailtoregisterforremotenotificationswitherror
in appdelegate
called. why don't appdelegate callback when registering pn?
registration called:
let settings = uiusernotificationsettings(fortypes: [.alert, .badge, .sound], categories: nil) uiapplication.sharedapplication().registerusernotificationsettings(settings) uiapplication.sharedapplication().registerforremotenotifications()
that not fault. there issue in apns on 19 july, 2016. reference check didregisterforremotenotificationswithdevicetoken not called in ios8, didregister...settings is
once apns start working , start receiving device token , work push.
Comments
Post a Comment