iPad

programmatically share image to Instagram through iOS app

Introduction to the post programmatically share image to Instagram through iOS app Instagram is another most popular social platform for sharing images. Now days, every app share image to Instagram too. Since like other social platforms Instagram does not provide developers permission to write image directly on the user Instagram wall. So for this we can […]

programmatically share image to Instagram through iOS app Read More »

UIProgressView Tutorial: Show download progress to users in IOS8

Tags: #UIProgressView #Tutorial #IOS8 #Download #Percentage                                               Most of the apps made are based on a centralised database and which means interactivity with server using internet. For app developers, its a common situation/scenario to

UIProgressView Tutorial: Show download progress to users in IOS8 Read More »

UIActivityViewController IOS Tutorial

In this tutorial, we will learn about UIActivityViewController, is another nice way for providing user’s with lot of options to do with your app document such as image, text etc. and to share documents via Airdrop, printing document etc. It much more like UIDocumentInteractionController, but offers developer a more control than UIDocumnetInteractionController. If you are not familiar

UIActivityViewController IOS Tutorial Read More »

Tips and Tricks – Part 3

In this article i am going to explain some of the programming solutions 1. Capture device screenshot programmatically     CGRect rect = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);     UIGraphicsBeginImageContextWithOptions(rect.size,NO,0.0f);     CGContextRef context = UIGraphicsGetCurrentContext();     [self.view.layer renderInContext:context];     UIImage *capturedImage = UIGraphicsGetImageFromCurrentImageContext();     UIGraphicsEndImageContext(); Here, in above code we first pass the rect which we want

Tips and Tricks – Part 3 Read More »

UIDocumentInteractionController Tutorial

NOTE:  Swift Version of UIDocumentInteractionController UIDocumentInteractionController Tutorial UIDocumentInteractionController is a powerful class available to iPhone developers that let developers to provide in app support to their users. For example a wallpaper application, that allows user’s to save wallpaper images in their photos app of the device. For this purpose developer has two options 1). Save

UIDocumentInteractionController Tutorial Read More »

Tag friends in image post/upload to Facebook

Sharing on Facebook is common features provided by apps developed for IOS. This feature lets app user’s to share pictures or status to their Facebook wall and  also allow app developers a platform for their app marketing as under the post its their app name written. So this means sharing to Facebook can triggers more

Tag friends in image post/upload to Facebook Read More »