Today, we will create a scroll view using the UIScrollView class and add the alphabets in the scroll view. The frame values used should be changed as per the needs. Action method for these buttons can also be added. #define WIDTH_OF_SCROLL_PAGE 65 #define HEIGHT_OF_SCROLL_PAGE 40 #define WIDTH_OF_IMAGE 65 CGRect scrollframe = CGRectMake(0.0, 4.0, 320, 40); UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:scrollframe]; scrollView.bounces = YES; scrollView.delegate = self; scrollView.userInteractionEnabled = YES; scrollView.clipsToBounds = YES; scrollView.scrollEnabled = YES; scrollView.showsHorizontalScrollIndicator = NO; NSMutableArray *array = [[NSMutableArray alloc] initWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H", @"I", @"J", @"K", @"L", @"M", @"N", @"O", @"P", @"Q", @"R...