iOS

Quick Action-3D touch

In this blog, we will be discussing about Quick Action (Another feature provided by Apple in iOS 9.0 and above) To learn about peek and pop, you can refer my previous blog: http://www.tothenew.com/blog/playing-with-3d-touch-ios/ QUICK ACTIONS Home screen quick actions give us a convenient way to perform useful, app-specific actions directly from the Home screen without […]

iOSMobilityTechnology

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 […]

iOSSoftware developmentTechnology

Playing with AutoLayout

Playing with AutoLayouts in iOS:- AutoLayouts was introduced in iOS 6.0. It is basically used for making ios app development easy to support different screen sizes(iPad/iPhone) with using same storyboard/View. For using AutoLayouts, You should have an idea about “Constraints”. Constraints is basically a rule that allows a view to set its position and size. […]

Sandeep Kumar
Sandeep Kumar
Read

AndroidiOS

Integrating Paytm Wallet SDK in an Android Application

How Paytm SDK Work The Paytm Payments SDK for iOS and Android enables merchants to integrate payments into their mobile app. The following diagram describes how a typical payment transaction works. The components involved in completing a payment transaction are as follows: User Placing the Order: The end user who wants to initiate a payment […]

Ashish Mishra
Ashish Mishra
Read

iOSMobilityTechnology

Create Custom Loader Using Images in iOS App

Ever wanted to have your own custom loader view instead of iOS default activity indicator? Is it difficult to create your own custom loader ??? No, it’s not. You can easily create custom loader using UIImageView animationImages property.You just need images using which you will create your own loader. So here is the way to […]

Ashu Baweja
Ashu Baweja
Read

iOSMobility

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 […]

Ashish Jain
Ashish Jain
Read

iOSTechnology

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 Objective-C, you can create a Objective-C class having NSObject […]

iOSMobilityTechnology

What’s New in Swift 2.0

One year ago, Apple released Swift, a brand new programming language for both iOS and OS X development and now they introduced Swift 2 with Xcode 7 this year. Swift 2 includes some new features such as improved error handling, availability check and , protocol extensions etc. Lets take the overview of new features. Error […]

Ashu Baweja
Ashu Baweja
Read

AndroidiOSMobility

WordPress to JSON Api

There are many websites which are currently running on wordpress. What if those websites need there data to use for mobile application. It is very tedious task to use the wordpress data for REST APIs. As a solution to this problem there is good plugin called WordPress REST Api plugin. It makes the task of […]

Services