Latest Insights on App Development for Your Business-Innofied

Tag: Objective C

  • Implementing Image Masking in iOS

    Image masking is a great feature, when you need to draw images in dynamic shapes. It creates an attractive and appealing UI to capture the interests of users. In general, image masking can be defined as cutting an image out of it’s stencil. This is what the Apple Documentation has to say about image masks…

  • Implementing shadow in iOS

    I have been constantly developing iOS apps for the last two years of my life. Doing so, I often came with client requirements where shadows become the main factor for the UI, giving a 3D look and feel to the whole interface. Implementing shadow in iOS is quite easy but there are times, when shadows are complex to deal…

  • Google Maps SDK and Places API integration in iOS

    Introduction Google Maps SDK integration in iOS apps has nowadays become pretty common due to its flexible features and small size. This tutorial will walk you through the whole process in step by step manner about how to integrate the Google Map. Getting the Google Maps SDK Get the SDK for Google Maps from Google Developers…

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