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 »