A customized segmented control on Objective-C.
Xcode 6 or later.
All you need to do is drop Source folder into your project and include headers.
NSArray *arr = [NSArray arrayWithObjects: @"Trending", @"Random", @"Search", nil];
segmentControl = [[GIFSegmentedControl alloc] initWithFrame:CGRectMake(0, 0, 250, 30)];
segmentControl.items = arr;
segmentControl.selectedIndex = 0;
[segmentControl addTarget:self action:@selector(segmentValueChanged:) forControlEvents:UIControlEventValueChanged];