Xcode 9.3 download

Apple has released a new beta of Xcode 9.3. The new beta release includes Swift 4 and SDKs with latest innovations and cutting edge features to enable you to build awesome apps.You can Download the new Beat from here Download Xcode 9.3 SWIFT INTERVIEW QUESTIONS  AWESOME JSON PARSING JUST ONE LINE        

App Transport Security basics

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 ensuring that no accidental network … Read more

Rename Xcode project completely with Pods and Bridging header

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

  1. Renaming a basic Xcode project
  2. Renaming a Xcode project with Pods and Bridging Header

Read more

Meltdown and Spectre Flaws affect all iOS and Mac devices

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 to lose sleep over it … Read more

WKWebView NSCoding support was broken in previous versions

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 Xcode shows an error. This … Read more

Add Custom Font in iOS Application Xcode 9

Adding custom font of your choice or of your business theme, in your iOS app is quite important. Custom fonts can enrich your app and transform it from just and app to an awesome app. Adding custom font in iOS application is a step by step process. In this article we have listed all the steps and in order, we have provided enough images so that you do not lose the track

A demo project has been created in which we will add a custom font. We assume that you have the basic knowledge of creating projects creating outlets and you have a custom font file. To begin with the demo app is a simple app with a UILabel and default font.

Read more

Swift: Split a String into an array

In Objective-c we used componentsSeparatedByString NSString *stringToSplit=@”str0,str1,str2,str3,str4,str5″; NSArray *arrayFromString = [str componentsSeparatedByString:@”,”]; In swift we can split a string into array simply by calling split() method var stringToSplit = “str0,str1,str2,str3,str4,str5” let arrayFromString = stringToSplit.split(separator: “,”) Less code.. 🙂

How to Disable ARC for files in a project? Xcode

ARC can be disabled for a single or group of files in a project. Adding -fno-objc-arc  compiler flag for the selected files in Target->Build Phases -> Compile Sources disables ARC for those files. You can do it in simple two steps Go to Target – > Build Phases-> Compile Sources Select File/Files for which you want … Read more