Posts

Showing posts from September 5, 2017

Push Notifications in iOS 10

Image
The  UserNotifications framework (UserNotifications.framework) supports the delivery and handling of local and remote notifications.( The new framework introduced with iOS 10 SDK. ) //*Steps for implement code to handle push notifications in iOS 10 *Import UserNotifications.framework in your AppDelegate file #import  < UserNotifications/UserNotifications.h > **Add UNUserNotificationCenterDelegate. #import <UserNotifications/UserNotifications.h> @interface AppDelegate : UIResponder <UIApplicationDelegate, UNUserNotificationCenterDelegate> ** Register for push notification Before registration check the version of iOS and then based on versions do the code. For iOS 7 code was different, fro iOS 8 & 9 code was different and again for iOS 10 code is different. As per my opinion you have to set the deployment target to iOS 8 or iOS 9 and later.  Define constant for version check : #import "AppDelegate.h" #define SYSTEM...

Application Upgrade Process Into Appstore

Image
Step 1:Change Your URL From Test To Secure(Live). Step 2:Go to AppDelegate          Uncomment LogFile,If You Comment it(Application Works Fast).         Change The Version Number. Step 3:Go to Your Application Target.Changes as Follows...        Change Display Name As You Want.        Change Bundle Identifier.                Change Version And Build                Go to Deployment Info,Change The Device as You Want(if  Your Application is Both For iPad and iPhone Then Select Universal).                You See The Build Settings,Go into Build Settings And At   Signing Point ,change The Code Signing identity And  Provisioning Profile Certificates And Development Team Also. Step 4:Go to Your Project And Make Sure The Signing Point in Build Settings in Target And Signi...