Hii Aleksandar Petkovic**  
**  
The problem can lie in how Azure Notification Hubs interacts with ios notification, particularly around template handling and payload delivery.
- Azure Notification Hubs iOS SDK Setup This guide outlines the full integration process and emphasizes correct environment targeting
 - Diagnosing Notification Failures This guide If your notification doesn't arrive at the client device, an error might have occurred when Notification Hubs tried to deliver it to the push notification service. For example, the payload size might exceed the maximum allowed by the push notification service, or the credentials configured in Notification Hubs might be invalid.To get insight into push notification service errors, you can use the EnableTestSend property.
 -  Debugging Notification Hubs : In iOS, if your app is running (even in the background), it will catch your notification. To make the notification show, you must implement the 
application:didReceivePushNotification:method in yourAppDelegateclass. Also, if your json payload is incorrect, APNS will accept the notification but the device will not display anything. - Apple’s Payload Size Limit APNS enforces a maximum payload size of 4KB (4096 bytes). If any template exceeds this, it will be dropped without feedback.
 
You can mark it 'Accept Answer' if this helped you
Regards,
Vishvani