Phonegap ios pushnotification - ios

I am new to iOS programming don't know anything about objective-c . I have done Push Notification on Android and it is working properly.I am using Cordova to implement in cross-platform device so, anybody can help me out how can I implement it in iOS ?
Thanks in advance.

If you are working on cordova then you can implement push notification using plugins available in cordova. You can use PushPlugin in you app, it will work for both Android as well as iOS. For more information about pushPlugin please Click Here.
You have to follow some steps for iOS to implement push notification. For more description please visit link mentioned here.
While generating .pem certificate for iOS please execute command written below instead of command written at point 10.
cat apns-dev-cert.pem apns-dev-key-noenc.pem > apns-dev.pem
You can also refer link mentioned here http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1

Related

settings for using firebase messaging on Ios app with nativescript

I use Firebase Messaging on an application made with nativescript, and I managed easily to set push notifications on android but on Ios it's a bit of a struggle...
https://github.com/EddyVerbruggen/nativescript-plugin-firebase/blob/master/docs/MESSAGING.md
I have 2 questions :
Do I have to follow these instructions & where do I manage the part wit "registerForRemoteNotifications" https://firebase.google.com/docs/cloud-messaging/ios/client#swift ?
How to refresh GoogleService-Info.plist if I changed my app ID Bundle ?
Thanks a lot !

React Native iOS Push Notification with Image

I currently have an app which was made with React Native. I need to display a local push notification, and there needs to be an image displayed within this notification. Currently, I am using the react-native-push-notification library for basic text notifications.
I have been looking for solutions but I have not found any way yet that I can add images into a notification. Is there some way to hook into native code that would allow me to do it?
Any help is greatly appreciated.
I am using react-native-firebase and it works great for me. It has an option for local notifications.
You can learn more about iOS notification with an image here: https://rnfirebase.io/docs/v4.2.x/notifications/reference/IOSNotification It gives an option to set a launchImage for iOS notifications. You should go through the documentation properly in order to install it properly.
I have used react-native-fcm, which is implemented using react-native-firebase. The support for issues are good enough and the document is well drafted for both ios and android. The pictures, icons and actions are configurable for both local and remote notifications.

Azure push notification on iOS Swift

i want to add Azure framework on iOS swift app for push notification , but i can't find a swift guide . Can anyone Help me to set up thanks
Try the following URL:
- https://azure.microsoft.com/en-us/documentation/articles/app-service-mobile-ios-how-to-use-client-library/
There's a section titled "How to: Register push templates to send cross-platform notifications" that includes code for both Objective-C and Swift.
Here is a screenshot:

PhoneGap Meteor iOS Push Notifications

I have currently used phonegap and deployed an iOS app that takes the URL of my meteor app and convert it into a "webapp" (not sure if this is accurate). However, I would like to implement remote/push notifications to Apple's servers APNS to enable the app to receive notifications, update badges etc... Are there any other means other than Urban airship?
Also, I chanced upon ObjectiveDDP, https://github.com/boundsj/ObjectiveDDP#requirements, but the tutorial is not working for me and it is really frustrating.
Thank you!
You can use the Phonegap team Push Plugin (on github) that allows sending push notifications for Android and iOS.
The plugin can be integrated via the phonegap build site without having to use Java or Objective-C or using Java or Objective-C.
Here is an updated answer that works as of 12/25/14:
Simply use the push package by raix: https://atmospherejs.com/raix/push The documentation is really good.
I think you need this one,
https://github.com/SpaceCapsule/Meteor-phonegap-push
I am implementing the same,
If I am able to do so I will put the demo too
Thanks.
I just released a new package that makes it easy to integrate Meteor with Cordova (Phonegap). You can use the Cordova API, including push notifications, just like it describes in the docs.
Check out Cordova Loader package.
Use PushPlugin
cordova plugin add https://github.com/phonegap-build/PushPlugin.git

Using IOS and facebook APIS

Hi Does any one know how to use facebook chat apis with ios, I have use git command from the steps followed here http://developers.facebook.com/docs/guides/mobile/ios/ after that i dont have any idea how to create a sample app and what syntax to follow. Thanks a lot
Max
I haven't yet worked with the FB SDK, but their guide says
The Github repository contains a sample application that showcases the iOS SDK features.
And indeed here's the sample: https://github.com/facebook/facebook-ios-sdk/tree/master/sample/DemoApp
You should check this sample app first. You can just open the DemoApp.xcodeproj file from your local git clone folder.

Resources