Xcode

Chip layout in swift – step via step guide

How to create tags cloud/chip layout view in swift:                                        In this tutorial, we will learn how to create chip layout in swift commonly known as tags. Tag clouds view or chips layout that, we are going to create in this tutorial will look like as show in the below image. When user taps on

Chip layout in swift – step via step guide Read More »

Height of keyboard in swift – Programmatically

  Programmatically get height of keyboard in swift Why we need to get height of keyboard in swift. Because with the introduction of different size of iPhone devices,  getting keyboard height is a pain for iOS developers. And with the addition of suggestion toolbar above keyboard in iOS, it’s necessary for iOS developers to get

Height of keyboard in swift – Programmatically Read More »

How to create NSMutableAttributedString in swift

Introduction to NSMutableAttributedString in swift: NSMutableAttributedString is a great way to customize or decorate UILable text programmatically. For example your requirement involves certain word in the middle of the text is in bold and in different color, what will you do. In this case one can use NSMutableAttributedString class provided in swift language. In this

How to create NSMutableAttributedString in swift Read More »

How to create UITableview in Swift – Tutorial

Introduction to UITableView in Swift: UITableView is the basic control used in mobile apps. In this tutorial, we will learn how to create UITableView in swift language. All the delegates for the UITableview are same only syntax changes are there in swift language. Let us start how to create UITableView in swift. Implementation of code

How to create UITableview in Swift – 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 »

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 »