iOS, Mobility

How to Implement Interactive Notification in your iOS Application?

Receiving and managing notifications on iOS is a nightmare until the introduction of Notification Centre in iOS 5. Android long held an advantage over iOS in terms of how easily users could interact. However, Apple has evolved how its premiere OS presents notification from third-party apps, but has limited developers to title and string...

by Harsh Vikram Singh
Tag: iOS
10-Feb-2017

Android, iOS

Simplistic Fullscreen Image Viewer: React Native

If you are working with the latest version of React Native like 0.35 or above, then there are lot of modules available to show an image in full screen mode. Now the twist here is when you are working with the older version of React Native. In this blog, I wanted to share how I implemented this use case on the application on React...

by Sakshi Tyagi
Tag: iOS
05-Jan-2017

iOS, Mobility

5 Reasons Why Apple TV is taking the World by Storm

Unveiled in September 2015, the fourth generation Apple TV sets the bar in being new-age and advanced among the range of smart TVs. Ever since its introduction, it has successfully managed to make the cut as one of the most luxurious TV streamers in the market. The set top box console delivers a quality that boasts of a very...

by Poulomi Nag
Tag: iOS
17-Aug-2016

iOS, Mobility

Swift For-Loops

In Swift 3.0 C-style for-loops will be removed. This will force developers to use a swift syntax for for-loops. So lets begin with swift for loops : Looping n times [code language="objc"] // output is 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 for i in 0..<10 { print(i) } // or for i in 0...9 { print(i) } [/code] Looping n...

by Ashu Baweja
Tag: iOS
10-Jul-2016

iOS, Technology

12 Key Differences between Objective C and Swift

Apple recently unveiled a new programming language Swift, to replace Objective-C for OS X and iOS application development. The advent of Swift marks the transformation from a decade old language to a naive yet effective programming language - Swift. The main purpose of introducing Swift is to provide a new easier, simpler, more flexible...

by Swati Khatri
Tag: iOS
21-Jun-2016

iOS, Mobility

Playing with 3D Touch—iOS

As we know that Apple has got a very different way to interact with the device in 6s and 6s plus by introducing 3D touch. In 3D touch, the phone judges how much pressure we are applying over the device and perform an appropriate action accordingly. iPhone responds to the subtle tap when one interacts with the device and thus you will...

by Nehu Gumber
Tag: iOS
31-Mar-2016

iOS, Mobility

App Thinning for iOS, tvOS and watchOS

App thinning is a concept for modern day interactive apps where there are a lot of resources. The App Store and OS install the app according to the device, with a minimal footprint. This helps in making the app which occupies less space, are easy to download and make use of all features. Faster downloads and minimum space occupancy gives...

by Ashish Jain
Tag: iOS
20-Jan-2016

iOS, Technology

Objective-C utility class using C functions in iOS

Introduction Like C, I would like to use C functions in  Objective-C class so i could use C functions anywhere anytime without using class name. Defining function: Function definition in C programming language is as follows − return_type function_name(parameter list) { body of the function } In...

by Abhayam Rastogi
Tag: iOS
24-Nov-2015

Mobility, Technology

STACK VIEW IN iOS 9

Gone are the days when every scrollable grid is either TableView or CollectionView. Enter StackView.! Stack view is a simple class that allows to stack layout views in either a column or a row. What makes it more helpful is the elimination of the need to add the constraints. It applies Auto Layout to the views within the stack view....

by Ashish Jain
Tag: iOS
03-Nov-2015

iOS, Mobility

App42 Shephertz integration for iOS

Shephertz is a cloud ecosystem for apps and games. It works on cross-platforms. The App42 Cloud APIs consist of a REST based service, which has both JSON and XML interface. There are around 20+ modules with over 400+ APIs which will help us to develop our applications irrespective of the type or domain of the App we are developing....

by Nehu Gumber
Tag: iOS
11-Oct-2015

iOS, Technology

Common Utility Extensions in Swift (Utils.swift)

What is Extension: Extensions are basically similar to an Objective-C category. Extensions are sort of methods adding in a Classe or Structure in a different flavour. Syntax of Extension: The syntax to create an extension is very similar to creating a type. You can write the following code in your Utils.swift class to add a...

by Abhayam Rastogi
Tag: iOS
11-Aug-2015