AndroidAutomation TestingiOS

Top 5 Mobile-Testing Strategies

Testing a mobile application is often challenging as compared to web application mainly due to the various factors affecting the behavior of the application. Some of these factors include different operating systems and their versions, different screen sizes and different networks. In this challenging phase of planning and testing a mobile application, it’s critical to […]

iOSSoftware developmentTechnology

Recursive Enumerations in Swift

Why use Recursion? When we say recursion, we are referring to a technique where an object is referring to itself. They’re useful where you need to do the representation of hierarchical structure like trees, network/graphs, which otherwise would be complicated to be represented using loops. It is possible to achieve recursion technique with reference types(class) […]

iOSMobilityTechnology

Basic Implementaion of Drag & Drop Feature with UICollectionView

In WWDC 2017 Apple has introduced Drag & Drop Interaction API with iOS 11. This API will help to implement Drag & Drop feature within the same application or between different iOS applications. But for now, this API is enabled only in iPad. Now we will learn how to implement Drag & Drop feature in […]

AndroidFront End DevelopmentMobility

How to Achieve React Native and iOS Bridging?

We love sharing our learning from the project. Recently, in one of our development projects, there was a need of bridging between iOS or Android and react-native. We were required to integrate the apple map with our application by writing the code in native iOS where the application would interact with the operating system. Once we […]

Priya
Priya
Read

iOSMobilityTechnology

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 of text. Interactive […]

AndroidiOSMobility

Simplistic Fullscreen Image Viewer: React Native

In this blog I will be helping out my developer buddies who due to few constraints cannot use jazzy npm modules to show images in their application beautifully in fullscreen mode something like a lightbox. We will be using react-native-overlay (https://github.com/brentvatne/react-native-overlay) module and css for implementing this.

iOSMedia & EntertainmentMobility

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

Poulomi Nag
Poulomi Nag
Read

iOSMobilitySoftware development

Introduction to Core Spotlight Framework

Core Spotlight APIs introduced in iOS 9 that allows your content searchable to users. Core Spotlight Framework has a design different than NSUserActivity that also allows apps content to be Searchable. It follows a database-style design and allows you to provide more information about a searchable content. For more on NSUserActivity read Spotlight Search APIs […]

iOSMobilityTechnology

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