Skip to content
Archive of posts tagged objective-c

RSSReader Version 2.0 with UITabBarController

Couple of months back I released an open source RSS Reader app for iPhone on GitHub. Most of the people who downloaded the source requested for an updated version using UITabBarController. Today I am releasing version 2.0 with the following changes Updated the views to use UITabBarController Loads rss subscription from plist file More fun [...]

UIScreen Notifications for connecting external display in iOS

UIScreen class has three main notifications which gets triggered when a new screen (external display) is attached to the device. UIScreenDidConnectNotification This notification is posted when a new screen is connected to the device. The object of the notification is the UIScreen object representing the new screen. There is no userInfo dictionary. Connection notifications are [...]

iPhone RSS Reader with source code

Last week I had prepared simple RSSReader application for demoing at Arabnet Shift Digital Summit. Since there was not much time to really explain I had to cut short my presentation with a very basic application demo. I promised to few programmers at Arabnet that I will release the source code for this application on [...]

iPhone SDK base64 encode / decode

I found this useful class for base64 encoding / decoding. It is written by Kiichi Takeuchi Base64.h Sample Usage Download base64 encode / decode class

iPhone SDK generate MD5 Hash of a string

This function will help you generate MD5 hash of a given string Class.h Class.m

iPhone SDK convert hex color string to UIColor

This function will help you to convert hex color string to UIColor Class.h Class.m