Would you like to implement a circular menu quick and easy?
Just the moment! there Is a fast engine for this reason.
get it now! Circular Plus!
HOW TO USE THAT?
EASY!
JUST DRAG AND DROP 4 FILES INTO YOUR PROJECT
• CIREngine.h
• CIREngine.m
• bitView.h
• bitView.m
write these codes in your .h OR .m file
#import “CIREngine.h”
#import “bitView.h”
in your function you can write this line for init.
CIREngine *cirMenu = [[CIREngine alloc] init];
How to change titles of the buttons?
EASY!
bitView *tmp = [cirMenu.collection objectAtIndex:0];
tmp = [cirMenu.collection objectAtIndex:1];
tmp = [cirMenu.collection objectAtIndex:2];
and …
Ho to change image of the buttons?
EASY!
and …
How to add event to the buttons?
AGAIN EASY!
tmp = [cirMenu.collection objectAtIndex:0];
[tmp.vubutton addTarget:self
action:@selector(buttonsAction)
forControlEvents:UIControlEventTouchDown];
bitView is just a view with a button, you can add everyview that you want to use, then CIREngine will rotate them in the circular way.