iPad

iPhone Development: Play YouTube video in UIWebview

Video a more easiest way to tell your users about your app behavior rather then providing them textual information about the app. Now days its a most common feature used by many app developers to place  video in information section of their app. Some of the developers used local video files and some of them […]

iPhone Development: Play YouTube video in UIWebview Read More »

iPhone Development: Post text or image to Whats-app in IOS

Whats-app, a common social platform gaining popularity very rapidly and now its time to let the app user’s share contents from native apps to their whats-app friends. In our IOS app development we can share content with whats-app friends using two techniques provided by whats-app. 1. Through cstom URL scheme.2. Through UIDocumentInteractionController. If you want

iPhone Development: Post text or image to Whats-app in IOS Read More »

iPhone Development: Post to Facebook and Twitter using SLComposeViewController

Post image and text to social network is a common feature used in all iPhone/iPad apps. We can post image and text using different techniques in iPhone. One of them is SLComposeViewController. The SLComposeViewController class presents a view to the user to compose a post for supported social networking services. First we will check for

iPhone Development: Post to Facebook and Twitter using SLComposeViewController Read More »

iPhone Development: Encoding and decoding JSON in IOS

JSON(Java Script Object Notation), according to its definition its an open standard format that send data to transmit in a key value pair and is easy to readable by human. In, IOS we can encode and decode our data into JSON or from  JSON using in built class provided by Xcode and is named as

iPhone Development: Encoding and decoding JSON in IOS Read More »

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 Instagaram does not provide developers permission to write image directly on the user Instagarm wall. So for this we can use UIDocumentInteractionController provided in Xcode. For sharing/posting image to Instagarm, you

programmatically share image to Instagram through iOS app Read More »

iPhone Development: Post image to your Facebook timeline in IOS

Posting image to a social network is a common feature provided by every smartphone app Ir-relevant of platform for which it is. In IOS we can also post images to our Facebook timeline using native Faceboook SDK for IOS. In this post i am going to tell you that how we can achieve our desired

iPhone Development: Post image to your Facebook timeline in IOS Read More »

iPhone Development: Set BackgroundColor of UITableView transparent in IOS7

UITableView is the most common control used in iPhone app development.It basically used for displaying a list in our iPhone application. Though you can customize it  in many different ways as per your app.To set background color of your UITableView as transparent, we can use table.backgroundColor = [UIColor clearColor]; The above line of code works

iPhone Development: Set BackgroundColor of UITableView transparent in IOS7 Read More »

iPhone Developemnt: Set statusbar color to light content

Every phone has status bar that tells user about status of some of major parts of the phone, like battery, signal strength, running internet or not. Like other phone’s, iPhone also has status bar. As you can see in the picture, status bar in iPhone is shown on top of the phone screen. see picture

iPhone Developemnt: Set statusbar color to light content Read More »