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

iOSMobilitySoftware development

NSGridView : A new layout container for macOS

What’s the need of NSGridView : Suppose you want to create a view which should look like this and to create it we have following available options: 1. Autolayout : Maintanence on constraints is complicated 2. NS/UIStackView : Arranging a sequence of items Fine control over content size and spacing To make the above design […]

iOSTechnology

Deep insight into Stack View

Introduction :  Apple has introduced this class to make the developer life easy. While working in a complex layout adding and removing constraints is very tedious task but after the introduction of this tool while working on complex layout it will be very easy to create complex UI. This is very powerful tool they have […]

AndroidAutomation TestingiOS

Profile Flash Games on Web and Mobile Devices

Adobe Scout is a Profiling tool for Flash content running on both the Desktop (Flash Player) and Mobile (Adobe Air) devices. This tool will gives us the insight into the behaviour of Flash Content. It help us to get performance issues in Action script code. It gather all information about what’s going on inside Flash […]

Connected TViOSMedia & Entertainment

Basic Application Development for Apple TV (with TVML & TVJS) with API calling & dynamic TVML

In my first blog, I talked about how to create client-server based application in tvOS using TVML and TVJS. So, to get started, you can take reference from it. Today, I am talking about how to send/retrieve information from remote server, so our mobile app will show us always updated results. To retrieve any information […]

AndroidConnected TViOS

Comparison between smart tv’s : Roku 4 vs Apple Tv (2015) vs Amazon Fire Tv (2015) vs Nvidia Shield Android Tv vs ChromeCast

Smart TVs and chrome cast have amused users with some very compelling features and UX. Every product has different capabilities and qualities and choosing one over the other can vary from person to person according to their needs and past experience with technologies. Three main categories in smart TVs that attract users are: Apps and […]

iOSTechnology

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

Connected TViOSMedia & Entertainment

Introduction of Client-Server based tvOS Application using TVML & TVJS

In September 2015 at WWDC event, Apple introduced the most powerful and advanced updates to the Apple TV set-up box. It provides simple, most effective and handy user interfaces to the users for navigating and viewing video content. It also supports other third-party applications and games named as tvOS applications. Apple’s 4th generation TV hardware […]

AndroidAutomation TestingAWS

Android App Automation on Multiple Devices in parallel using AWS Device Farm

App Automation lets you ensure that you can run your test-suite repetitively, with minimal effort & check the results whether its meeting your functional requirements or not. After each build-release, you need to follow the same procedure. But the challenge is to cover variety of phones & tablets and it is really impossible to test […]

Services