• Stars
    star
    134
  • Rank 270,967 (Top 6 %)
  • Language
    Objective-C
  • License
    Other
  • Created over 11 years ago
  • Updated over 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Drag Menu you can easily open and close using drag gesture

UzysDragMenu

Drag Menu you can easily open and close using drag gesture.

Screenshot Screenshot

UzysDragMenu features:

  • Very Easy to customize menu view , you can use interface builder.
  • you can choose drag area (superView or MenuView), using Option : isSuperViewGesture
  • Support Both ARC and non-ARC Project

Installation

Copy over the files libary folder to your project folder

Usage

Import header.

#import "UzysDragMenu.h"

Initialize

####1. make menu Item

UzysDragMenuItem *item0 = [[UzysDragMenuItem alloc] initWithTitle:@"UzysSlide Menu" image:[UIImage imageNamed:@"0.png"] action:^(UzysDragMenuItem *item) {
    NSLog(@"Item: %@", item);

}];
item0.tag = 0;

####2. make controlview

UzysDragMenuControlView *controlView = [[[NSBundle mainBundle] loadNibNamed:@"UzysDragMenuControlView" owner:self options:nil] lastObject];
    
[controlView.btnAction addTarget:self action:@selector(actionBtn:) forControlEvents:UIControlEventTouchUpInside];

####3. make UzysDragmenu

self.uzysDmenu = [[UzysDragMenu alloc] initWithItems:@[item0,item1,item2]
                                         controlMenu:controlView
                                    superViewGesture:YES];
[self.view addSubview:self.uzysDmenu];

Contact

License

More Repositories

1

UzysAnimatedGifPullToRefresh

Add PullToRefresh using animated GIF to any scrollView with just simple code
Objective-C
1,399
star
2

UzysAssetsPickerController

Alternative UIImagePickerController , You can take a picture with camera and pick multiple photos and videos
Objective-C
722
star
3

UzysSlideMenu

Slide Dropdown Menu
Objective-C
507
star
4

UzysCircularProgressPullToRefresh

Give Pinterest Like PullToRefresh to any UIScrollView with just simple code
Objective-C
340
star
5

UzysAnimatedGifLoadMore

Add LoadMore using animated GIF to any scrollView with just simple code
Objective-C
160
star
6

UzysImageCropper

An alternative to the UIImagePickerController editor with extended features.
Objective-C
77
star
7

UzysGridView

UzysGridView is simple GridView iOS Component which you can easily change position & delete cell.
Objective-C
43
star
8

uzys-elasticache-tunnel

You can connect to elasticache outside the aws network
JavaScript
18
star
9

UzysUIViewAddition

UIView Category - Easy way to access view's frame, And provide easy way to layout UIViews programatically to maintain readability of code.
Objective-C
13
star
10

UzysHapiSkeleton

Hapi.js MVC Template
JavaScript
9
star
11

UzysSpringBoardView

UzysSpringBoardView is UI component which is similar to the iOS HomeScreen
Objective-C
9
star
12

UzysHapiReactBoilerplate

A boilerplate project with Hapi.js + React + Redux + Webpack
JavaScript
4
star
13

UzysCountClockView

Count from current Date to target date.
Objective-C
3
star
14

CCTouchDownMenu

Cocos2D Custom CCMenu supporting TouchDown
Objective-C
2
star