KB Tag: iOS

  • How to use Generics in iOS swift

    Generics are an interesting concept, and they permit you to reuse your code for several types. Let’s stare at an example: func swapInts(_ a: inout Int, _ b: inout Int) {     let temporaryB = b     b = a     a = temporaryB } swapInts function obtains 2 Ints and swaps them. Here is a sample usage:…

  • How to use Enumeration with swift

    In this tutorial, we will explain about swift significance. Here we will teach you about Swift, Apple’s new programming language for developing apps. We will be discovering some tips, tricks, and techniques that you can pursue to create your Swift code even Swiftier. Swift was considered with safety, clarity, and stability in mind, and we will…

  • How to build UI PageViewController by storyboard in iOS?

    In this blog, we will show you the basics of UI PageViewController and illustrate how to execute the controller by using Storyboard in iOS. Get build your pixel perfect iOS application for your business, click here and get started!!! Creating the Project Initiate Xcode and build a new Project by using the Single View Application…

  • How to create table view using storyboard in iOS App?

    In this tutorial, we will explain to you how to create a table view using Storyboard in the iOS app with a Navigation interface and integrate it with UITableView. We try to keep things simple and focus on explaining the concept. We create engaging mobile experiences for Apple smartphones and gadgets, Get consulted today!!! Now,…

  • Size classes in Xcode 8

    Auto layout is vast for making adjustments to a layout based on constraints, but sometimes a layout requires more important adjustments based on the device type, screen size or orientation. Probably you may need: A large font size in the big iPad Pro screen than on the small iPhone SE A sight to be laid…

  • Advanced Autolayout with xcode 9

    Auto layout is a constraint based layout system; it permits developers to create a responsive and adaptive User Interface. Generally developers find it difficult to study and avoid using it. While developing an app today you won’t be able to manage to keep going without it. Now we are going to start with the basic…