iPhone Development: Convert image into base64 string

Need to post image to server from your iPhone app, and your server guy who wrote down the PHP script asked you to send image as base64 String.In iPhone we can convert an image to base64 string using below pesudocode -(NSString *)Base64Encode:(NSData *)data {     //Point to start of the data and set buffer sizes […]

iPhone Development: Convert image into base64 string Read More »

iPhone Developement: Send app request to Facebook friends in IOS

Developing a game in IOS and want to send app request to your friends so that they can download it and play your niche game. Don’t worry it’s a easy process to send app request to your friends on Facebook. In IOS Facebook SDK allows us to open up a dialogue that contains logged-in user

iPhone Developement: Send app request to Facebook friends in IOS Read More »

iPhone Development: Fetch friend list from Facebook in IOS

Facebook is a most popular social platform used in today’s world. So most of application demands to use Facebook functionality in the iPhone app. I am not discussing or telling all the things that most of the iPhone apps integrates, but i am just going to show you that how you can fetch or get

iPhone Development: Fetch friend list from Facebook in IOS Read More »

iPhone Development: Some tips and tricks for iPhone development

In this post, I am going to tell you about some of the common things that need to be used in each project like validate a text field, show alert view, show HUD etc. Instead of writing code of lines again and again for showing alert and validate text fields, check for internet we can

iPhone Development: Some tips and tricks for iPhone development Read More »

iPhone Development: Play video in iPhone sdk

Having a requirement of playing video in your app and the video is  stored locally in your app bundle. Don’t get panic as APPLE Inc. provided a media player framework that will allow you to play video files in your app. MediaPlayer framework includes MPMoviePlayerController that will play video files for you. In this post i

iPhone Development: Play video in iPhone sdk Read More »

iPhone Development: Reload a particular row in TableView

Tags: #Reload a Row #Tutorial #UITableView #IOS  Table-view is the most common control used in iPhone app development.It allow app developers to display data in a list form.Everyone is familiar with its implementation in iPhone SDK but few of us know that we can reload a certain row in table-view Ir-respective of loading a whole table-view by

iPhone Development: Reload a particular row in TableView Read More »

iPhone Development:Push notification in Iphone SDK and Add custom sound to Push Notification

Tags: #PushNotification #Tutorial #IOS8  Push notification is a great feature that gave app developer/owner a chance to remind their app user’s that something new happened to the app. Mostly push notification is used in the apps that heavily depends upon remote server and required to have attention of their user’s. e.g. like a store app, if

iPhone Development:Push notification in Iphone SDK and Add custom sound to Push Notification Read More »

iPhone Development:Create a UITabBarController programmatically in iPhone SDK

Tags: #UITabBarController #programmatically #Tutorial #IOS8 Today, in this post i am going to tell you how we can create UITabBarController programmatically in objective C/ iPhone SDK.Though you can also chose a template for UITabBarController in the beginning of your project as the same is by default provided in Xcode by APPLE Inc. In my development career i came

iPhone Development:Create a UITabBarController programmatically in iPhone SDK Read More »

iPhone Development:Add Navigation controller to single viewController template in Xcode

In this post i am going to tell you how could you add a NavigationController(used in iPhone Objective C) to navigate from one viewController to other viewController in iPhone when you chose single view template in xcode. Suppose you are creating a new project in xcode and you have chosen singleview template as your starting

iPhone Development:Add Navigation controller to single viewController template in Xcode Read More »