Parsing JSON data in into swift objects have become super easy with Swift 4 JSONDecoder.Given below is a simple example which hits a Api and parses the JSON data directly to student object.We are assuming that we have a JSON response which has same keys as names of properties. import UIKit struct… Read more »
App Transport Security (ATS) is a network security feature on Apple platforms and is enabled by default. It ensures that applications implement industry standard security without known weaknesses and ensures data integrity and privacy. The purpose of App Transport Security is to improve sense of security in end users by… Read more »
This article is meant to be a guide. Target is to evolve it to a exhaustive list of swift questions and answers with your support. Given below are few of the most common questions asked in swift interview straight from swift docs, which according to me is a must read… Read more »
Renaming a project in Xcode can be a trouble if you don’t know what you are doing. In this tutorial you will learn about steps and checks necessary for changing project name. This guide is divided into 2 section Renaming a basic Xcode project Renaming a Xcode project with Pods… Read more »
For the very first time mac and iPhone users have found themselves in a very unfamiliar territory, threat of a flaw|malware.Its very scary and unfamiliar experience for us.Apple has announced that all of today’s Apple devices are affected by Meltdown and Spectre, only exception being apple watch. But no need… Read more »
WebKit was introduced in iOS 8 but was released with an error which resulted in a runtime crash if the configuration was done using Interface Builder. So in Xcode 9 if your project configuration has minimum OS support less than 11.0 and you try to add WebKit using interface builder… Read more »