iChernov / APHorizontalMenu

Customizable horizontal menu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

APHorizontalMenu

Version Platform

Usage

To run the example project; clone the repo, and run pod install from the Example directory first.

Installation

APHorizontalMenu is available through CocoaPods, to install it simply add the following line to your Podfile:

pod "APHorizontalMenu"

Example

iPhone

Usage

Using APHorizontalMenu is really easy, there is an Example project that you can check, but here are the basics.

You can add APHorizontalMenu programmatically or using Storyboards.

Programmatically

Just init the APHorizontalMenu, fill it with values and add it to an existing view.

APHorizontalMenu *horizontalMenu = [[APHorizontalMenu alloc] initWithFrame:CGRectMake(0, 200, 320, 40)];
horizontalMenu.delegate = self;
horizontalMenu.values = @[@"Item 1", @"Item 2", @"Item 3", @"Item 4", @"Item 5", @"Item 6", @"Item 7", @"Item 8", @"Item 9", @"Item 10"];
[self.view addSubview:horizontalMenu];

Storyboards

In this case, create a new UIView using the Storyboards UI designer and set the position, size and layout restrictions as desired. Then, go to the Utilities -> Identity inspector -> Custom class -> Class and write down "APHorizontalMenu".

Then, create an outlet as follows in your Controller.

@property (weak, nonatomic) IBOutlet APHorizontalMenu *horizontalMenu;

And in the implementation file of your controller add at least this.

self.horizontalMenu.delegate = self;

Delegate

Do not forget to add implement the APHorizontalMenuDelegate as follows. First add the Delegate in the header file of your controller, for example:

@interface ViewController : UIViewController <APHorizontalMenuSelectDelegate>

And conform the protocol by creating the method in the implementation file of your controller so you can receive messages:

- (void)horizontalMenu:(id)horizontalMenu didSelectPosition:(NSInteger)index {
    NSLog(@"APHorizontalMenu selection: %d", index);
    // Do whatever
}

Customization

You can customize some of the properties of APHorizontalMenu like this:

self.horizontalMenu.cellBackgroundColor = [UIColor brownColor];
self.horizontalMenu.cellSelectedColor = [UIColor greenColor];
self.horizontalMenu.textColor = [UIColor blackColor];
self.horizontalMenu.textSelectedColor = [UIColor blueColor];
self.horizontalMenu.selectedIndex = 2;
self.horizontalMenu.visibleItems = 3;

Contact

Abel Pascual

License

APHorizontalMenu is available under the MIT license. See the LICENSE file for more info.

About

Customizable horizontal menu

License:MIT License


Languages

Language:Objective-C 68.5%Language:Ruby 19.4%Language:Shell 10.5%Language:C 1.6%