UIScrollView

UIScrollView with Autolayout – IOS tutorial

  In this post we will see, how to fix scrolling issues for UIScrollView with autolayout. Follow below steps to learn how can we fix scrolling issue with UIScrollView while using auto layout, to design our user interface in storyboard that contains UIScrollView with autolayout. Step 1: Drag UIScrollView to the view, add constraints to […]

UIScrollView with Autolayout – IOS tutorial Read More »

Create custom UIPageViewController – objective C

UIPageControl in IOS is a control that is used mostly in help screens or info screens for IOS apps. In this we are going to create a small tutorial for custom UIPageControl using UIScrollView and UIPagecontrol in which we will change background color of UIImageView as per page number selected by user on tapping on UIPageControl

Create custom UIPageViewController – objective C Read More »

Get page number from UIScrollView

Getting page number from UIScrollView In order to get  page number form UIScrollView, we need to implement UIScrollView delegate method names   scrollViewDidEndDecelerating   This methods gets called when UIScrollView gets to halt or stopped after scrolling the content, Thus at this point we can get  the page number by calculating the width of UIScrollview

Get page number from UIScrollView Read More »

iPhone Development: Create a grid of buttons using UIScrollView

Creating a grid of buttons or images in iPhone app is a common requirement now day’s. The problem I am talking about is shown in given below image To achieve this requirement, we have various approaches 1) Use UITableView 2) Use UICollectionView 3) Create your own grid layout using UIImageView or UIButton(If you want to

iPhone Development: Create a grid of buttons using UIScrollView Read More »