Create .pem file for iOS push notification – Tutorial

Introduction to .pem file: In this tutorial we will learn how to create or generate .pem file for Apple push notification in iOS.Pem file are placed on the server that connects with Apple Push server in order to send push to our iOS app. Steps to create .pem file for Push Notification: Step 1: Login […]

Create .pem file for iOS push notification – Tutorial Read More »

Create development and Distribution provisioning profile

Introduction to Provisioning profiles – Xcode: In our last post we learned how can we create Development and Distribution certificates. In this tutorial we would learn how to create provisioning profile. If you did not know how to create development and distribution certificates for code signing, you can learn from below link  Learn how to

Create development and Distribution provisioning profile Read More »

Create development & Distribution certificates xcode

Introduction to Development and Distribution Certificates: To test your iOS app on your iPhone, one needs certificate and provisioning profiles to sign the app. In this post we will learn how to create development and distribution certificates so that we can sign our app source code in xcode and install them on real iPhone devices

Create development & Distribution certificates xcode Read More »

Executable contains incomplete bitcode error – Solved

With new Xcode, one of the problem faced by iOS developers while uploading app to App store is bitcode related errors. Errors like the executable contains incomplete bitcode. In this post, we will learn that how to fix executable contains incomplete bitcode. error in our project. If you are not using pods then simply open

Executable contains incomplete bitcode error – Solved Read More »

Create UIDocumentInteractionController in swift

Introduction to UIDocumentInteractionController Swift: In this post we will learn how to create UIDocumentInteractionController in Swift language. We will create an example app to learn how to use UIDocumentInteractionController in swift. According to Apple docs, UIDocumentInteractionController is a viewcontroller that previews, open, or print files whose file format cannot be handled directly by your app.

Create UIDocumentInteractionController in swift Read More »

Allow only numbers in the UITextField – IOS Tutorial

Introduction to how force UITextField to accept numeric values in ios: Validations are important in IOS app development that includes user input. Sometimes we, need only numeric values to be entered into the UITextField. In this post we will look at the code that helps us in achieving our requirement to allow only numbers in

Allow only numbers in the UITextField – IOS Tutorial Read More »