How to delete IMAP mail account from iPhone

After a lot of R&D I was able to find the solution. Many people posted like go to Settings > Mail > Accounts and then select an account and then you see a button at bottom to delete account. But this was only working for iCloud, Exchange and Gmail in my case. After a lot…

Pagination in UITableView with next previous buttons

Today we will talk about how to give pagination behaviour to our UITableView. We are going to populate UITableView with 2 arrays and it will have 2 UIButtons. 1 is for “next” and the other one is “previous”. UItableView will show only 10 rows at a time. Its logic is that we have 4 arrays. 2 arrays have complete…

UIImageView or UIView Blast Animation

Hi guys today we are going to work on some UIImageView animation we can apply this animation on UIView or any subclass of UIView. First of all we create a new project You will have to add UIView+Explode these files in your project. These files are Created by Daniel Tavares and i found in a source code. Now you…

Lazy Loading image Download

Lazy loading is a key thing when you are working on some application where you interact with server side and download data from server side. Normally when we use to download images from server then it takes more time than textual data and users don’t like to wait anywhere. So today I decided to share…

Animate NSLayoutConstraint Change

Hi Guys today we are going to make a tinny sample to demonstrate how to animate NSLayoutConstraint change in a very simple and easy way. are you ready …? we have no time to think about it so lets start. 1. Create a new single view based project. 2. Use a storyboard or whatever you like to…

Adding interactive SplitView for iPad

Adding interactive SplitView for iPad Hello buddies hope you are enjoying good and and coding. Today we are going to add an interactive split view in an iPad application. Good thing is that it will be added in the mid of application not at first screen. So here we go create a new project with…