onAugust 16, 2010 iPhone SDK base64 encode / decode I found this useful class for base64 encoding / decoding. It is written by Kiichi Takeuchi Base64.h @interface Base64 : NSObject { } + (void)… Discover More
onAugust 16, 2010 iPhone SDK generate MD5 Hash of a string This function will help you generate MD5 hash of a given string Class.h + (NSString *)getMD5FromString:(NSString *)source; Class.m + (NSString… Discover More
onAugust 16, 2010 iPhone SDK convert hex color string to UIColor This function will help you to convert hex color string to UIColor Class.h + (UIColor *) colorWithHexString: (NSString *) stringToConvert;… Discover More