Latest Insights on App Development for Your Business-Innofied

Tag: iphone

  • Box Integration in iOS apps

    Introduction Cloud storage and other multiple features of cloud computing have made modern users familiar to cloud. Box and Dropbox have become so popular that users search for them in almost every app where they need to handle files. Here we are going to discuss how to include BOX in your iOS application with ease…

  • In App Purchase Not Working in iOS? Here is a solution

    While browsing for In App Purchase tutorials, I found these two very useful blogs: In App Purchases: A Full Walkthrough Introduction to In-App Purchases in iOS 6 Tutorial If you are a beginner you would find the first blog very useful. There is already existing library for in app purchase . Ronan O’Ciosoig has suggested to…

  • 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…

  • 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…

  • 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…

  • iPhone like infobubble with Sencha Touch

    Every time a client wants a map in his application, he wants an infowindow for sure to show the details of  map markers. And by infowindow, they assume the native iPhone like infobubble. Now, while creating a map for Sencha Touch, the default infowindow of Google doesn’t really look good in mobile device. So here…