NSAttributedString and TTTAttributedLabel tutorial in iPhone
In most of the iOS applications we will encounter the situation of having a single UILabel with different colors, different font style and sizes. Before iOS 6, there are no official properties or...
View ArticleCollection view in iPhone
UICollectionView is one of the powerful feature that apple adopted for iOS SDK to customize the view in grid manner. Prior to iOS 6, to achieving this we have to use third party framework stuff like...
View ArticleCustom Path Between Two Locations in iPhone Map View
In this tutorial I will explain custom drawing of path between two locations in iOS map view. This is possible by using annotations, core graphics and map kit. The MapKit allows simple access to the...
View ArticleAddress Book tutorial for iPhone – Part 1
The Address Book technology for iOS provides a way to store people’s contact information and other personal information in a centralized database, and to share this information between applications. On...
View ArticleAddress Book tutorial for iPhone – Part 2
We create a new method getPersonOutOfAddressBook where our most important actions take place. - (void)getPersonOutOfAddressBook { CFErrorRef error = NULL; ABAddressBookRef addressBook =...
View Article