iOSMobilitySoftware development
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 […]
Introduction : Drupal 8 brings many changes in terms of frontend. Drupal is now focused on the mobile-first responsive approach. Frontend performance has been given a high priority, unlike previous versions of Drupal. There is a new asset management system based around libraries that will deliver only the minimum required assets for a page that […]
Cascading Style Sheet, the base for front-end development are used to describe the presentation of a document written in a markup language. CSS3 is the latest standard for Cascading Style Sheet. CSS3 provides us capability to generate drop shadows in different views like raised box, perspective, lifted corner, vertical curves and horizontal curves etc. as […]
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
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 […]
If you are planning to upgrade / change your CMS / framework, content migration is one of the crucial things that need to be planned. Content migration is not a single person job, as it would become extremely intricate if your site has a lot of content, not just text, but images and other graphics. […]
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 […]
AngularJSFront End DevelopmentNode.js
Developer conferences are a great source of learning about advancement in technology and share thoughts with people in developers community. Two Javascript enthusiasts from To The NEW are very excited to attend Fullstack Conf to be held in London from 13th July -15th July ,2016. Its a great pride to have one of our engineers, […]
Ever wondered how those multiple resolutions of videos are available on youtube or some other website when you have uploaded only a single file. Well, the process is called ‘video transcoding or video encoding’. Describing it in layman’s terms ‘Video encoding is the process of converting a video from one format to another format so that […]