Skip to content

changguanghua/NAMenu

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

a dead simple SpringBoard-like grid menu for iOS with landscape support

Introduction

NAMenu is a dead simple grid menu you can use to launch other view controllers. It features smooth animation and full landscape support. It was designed to be minimalistic and dead-easy to use or modify. It's licensed under the Apache license so feel modify it and share your changes with the world.

Getting Started

You can add NAMenu to you your project in under 5 minutes! Simply copy the files in the Source directory to your project.

There are two ways to create your menu. The easiest way to use NAMenu is to simply subclass NAMenuViewController and set the menuItems array to an array of NAMenuItem objects (see the included example project for an example of how to do this).

You can also drop an NAMenuView in an existing view controller and implement its delegate methods (which are similar to UITableViewDelegate methods).

Adding a menu item is only a few lines of code:

// First Item
NAMenuItem *item1 = [[[NAMenuItem alloc] initWithTitle:@"First Item"
												 image:[UIImage imageNamed:@"icon.png"]
											   vcClass:[SampleViewController class]] autorelease];
[items addObject:item1]; 

License

Copyright 2012 [Cameron Saul] cammsaul. This library is distributed under the terms of the Apache license.

While not required, I greatly encourage and appreciate any improvements that you make to this library be contributed back for the benefit of all who use NAMenu.

Screenshots

Portrait Mode

Landscape Mode

Landscape Mode, Scrolled

About

a dead simple SpringBoard-like grid menu for iOS with landscape support

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published