How to do JSON Parsing in IOS
If you don’t know what JSON is, it’s a simple human readable format that is often used to send data over a network connection. For example, if you have an array of three strings, the JSON representation would simply be: [“test1”,…
How to disable ARC for a single or multiple files in a project?
How to disable ARC for a single or multiple files in a project? Note: if you want to disable ARC for many files, you have to: click on you project (Top Left of the project) Select ‘Targets’ from project pan open “Build phases” ->…
How to add third party libraries properly in iOS
In Most of the time we write lots of code to implement a or some functionality(Like Networking,feedback,parsing etc).strangely the same functionality is available on the free of cost on various source of repositories. we need to consume them in our…
How to Publish or Update app from Different or other Macbook where originally apps published .
Sometimes you submitted app on a system and try to submit the updated verrion of the same app from different system (Macbook,iMac), That creates a problem because there is not a private key on your Mac associated with the distribution certificate you are…
How to add private key to the distribution certificate ?
Sometimes you submitted app on a system and try to submit the updated verrion of the same app from different system (Macbook,iMac), That creates a problem because there is not a private key on your Mac associated with the distribution certificate you are…
How to create Simple Registration form in SWIFT !
Registration form in SWIFT A form which we may use in multiple applications but each time that is Sign up or Registration form. Below is the sample code of simple registration form Below form contains the fields like -First Name -Last Name -Email…
How to Insert Value into SqliteDB from NSDictionary in IOS !
NSDictionary in IOS Sometime we get value in the form of Dictionary like from JSON or Xml API. Below are the following codes which will help you insert data into sqlite database. Note:Before this add Sqlite framework and import #import <sqlite3.h>.…
How to extract Image URL using REGEX (NSRegularExpression) in IOS !
How to extract Image URL using REGEX (NSRegularExpression) in IOS ! Sometimes its very difficult to find image link from an html string. if you have already html strings the us the below sample to extract images SAMPLE-1 NSRegularExpression* regex =…
IOS 8.4 Features !
Revamped Music app – iOS 8.4 introduces a new look for the Music app with a revamped design that shows pictures of artists in the Artists view and offers personalized playlists. It also offers a new MiniPlayer, a redesigned look for “Now…
Top-Most Swift Interview Questions
1) Explain what is Swift Programming Language? Swift is a programming language and system for creating web applications in iOS and OS X. It is an innovative programming language for Cocoa and Cocoa Touch. 2) Explain how you define variables in Swift…