Core data and how to use it in iOS Objective C
Core data and how to use it in iOS Objective C

Core Data is a framework that you use to manage the model layer objects in your application. It is also a persistent technology,

Adding modification functionality in Contact sample
Adding modification functionality in Contact sample

Here we are coding to add functionality in our Contact sample which will behave like our device contact app, if we add, delete or update the person contact in device contact, when we open our contact sample it will also modify according the device.

Sample on Contact-Sync in iOS
Sample on Contact-Sync in iOS

Here we will create a sample on device contact syncing with our application using ABAddressBook framework.

Fetching Device Contacts using ABAddressBook framework in iOS
Fetching Device Contacts using ABAddressBook framework in iOS

In this article we will learn about the ABAddressBook framework with its important classes and methods that will be used to fetch device contacts with its detailed informations.

Buttons in iOS
Buttons in iOS

In iOS application development one element is very common that is Button, which is used for generating actions or taking some actions. In iOS for creating buttons provides UIButton class.

Tap Gesture Recognizer in iOS
Tap Gesture Recognizer in iOS

Here we will learn about UITapGestureRecognizer class, and see how can we it in our iOS applications.

Implementing Sections in Country List in TableView
Implementing Sections in Country List in TableView

Here we will implement Sections with the titles in the Table View, here we will code where we finish our previous project.