Latest Insights on App Development for Your Business-Innofied
  • Single scrolled parent with multiple containers in Sencha

    App developers often need to create a view with multiple dataviews, lists and/or containers. In Sencha, we have seen a common problem of multiple scrollbar when a page has many containers. The whole view looks pretty mixed while scrolling any of the containers. Developers often look for a realistic solution to this problem; I have…

  • Ebook – Backbone JS Patterns & Best Practices, Authored by Swarnendu De

    Readers would be pleased to know that I have teamed up with Packt Publishing to organize a Giveaway of my new book that I have written – Backbone.js Patterns and Best Practices (Amazon reviews). And three lucky winners stand a chance to win 3 digital copies of this book. Keep reading to find out how you…

  • Accordion View in iOS

    We often come across the need for an accordion view while showing items, be it as simple as an expandable list of names to complex ones like names expanding to various no of pictures. A fully customisable Accordion view is here. You can view the demo here and download the source code from the GitHub for Swift and…

  • JavaScript coding standards we follow

    This document’s primary motivation is twofold: 1) code consistency 2) best practices. By maintaining consistency in coding styles and conventions, we can ease the burden of legacy code maintenance, and mitigate risk of breakage in the future. By adhering to best practices, we ensure optimized page loading, performance and maintainable code. Therefore, at Innofied, we follow these guidelines strictly…

  • Indexed List in iOS applications

    In iOS apps, often we need to implement Indexed List for enabling Index Scrolling in a TableView, just like the contacts view of an iPhone. Indexed List enables fast scrolling to required section without trolling through each and every sections. Since it is required in various apps , it has to be made generic, so…

  • Pinterest Style Mosiac Image Gallery in iOS

    Often in iOS apps we need to represent images through gallery . Pinterest Style Mosiac View is one of those gallery representation style . Some people called this pattern as Waterfall View also. As we need this view pattern in various apps, we can make it generic by creating a UIView which will represent the…

  • Add stylish frames to your photos in iPhone

    [UPDATES] 1. Support for both retina and non-retina device. 2. Support for higher resolution overlay .png image for  border/frame. ——————————————————————————————————————————————————————— Here I am going to explain how to play with filters in Objective C and add preset stylish borders dynamically to any UIImage.We are going to take an image and add preset stylish frames on it.In…

  • Sliding dock and Text Embedding on an UIimage

    Hello Guys, am Manish, here to give a brief introduction to build a simple iOS app containing a sliding dock, and some image manipulating features. Here we are going to learn: • Managing Views • UIGestureRecognizer a. Swipe Gesture (left and right) b. Tap gesture UITextfield and UIButton UIImage manipulation. Let us  first start from…

  • Sencha Touch coding guidelines you should follow: Part 1

    I started working with Sencha in 2009. It was ExtJS back then and was only for web development. Once started, I immediately fell in love with the library because of its structure and beautiful widgets. However, the learning curve was very steep and only a handful of developers were actively working on it that time.…

  • Slide navigation with Sencha Touch

    [UPDATES] 1. Main panel issues are resolved now. 2. There are multiple viewport files in the development version. Keep only one while creating production or testing build with Sencha. Because Sencha by default includes all the classes of same name in the build. —————————————————————————————— Slide navigation in mobile apps is a huge hit now-a-days. Starting…