TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
A miniature replica of your UIView with an indicator of your location.
SSUIViewMiniMe takes your UIView and creates a small version of it with an indicator of your location on the original UIView.
The example shown in the GIF above is in the SSUIViewMiniMeDemo/
directory:
All those features are shown in the GIF above (might take a few seconds to load)
In one of my projects I was asked to create a simple UI for seats selection in a movie theater. With the iPhone screen relatively small I had to find a way to zoom in on a view and still let the user know about his current location. I ended up using something much simpler for the seat selection project and found a lot of other uses for SSUIViewMiniMe class.
Just drag SSUIViewMiniMe.h & m to your project.
import SSUIViewMiniMe.h to your project.
miniMeView = [[SSUIViewMiniMe alloc]initWithView:yourView withRatio:4]; // ratio is the size of the miniMe view you want to create. UIView size \ ratio = UIViewMiniMe size
[self.view addSubview:miniMeView];
That's it!
If you want to use the delegate methods (optional) you will also need to add
@interface ViewController () <SSUIViewMiniMeDelegate>
...
miniMeView.delegate = self;
- (void)enlargedView:(SSUIViewMiniMe *)enlargedView willBeginDragging:(UIScrollView *)scrollView;
Tells the delegate when scrolling is about to start.
- (void)enlargedView:(SSUIViewMiniMe *)enlargedView didScroll:(UIScrollView *)scrollView;
Tells the delegate when the user scrolls the content view.
- (void)enlargedView:(SSUIViewMiniMe *)enlargedView didEndDragging:(UIScrollView *)scrollView;
Tells the delegate when dragging ended.
- (void)enlargedView:(SSUIViewMiniMe *)enlargedView willBeginDecelerating:(UIScrollView *)scrollView;
Tells the delegate that scrolling movement is starting to decelerate.
- (void)enlargedView:(SSUIViewMiniMe *)enlargedView didEndDecelerating:(UIScrollView *)scrollView;
Tells the delegate that the scroll view has ended decelerating the scrolling movement.
The MIT License (MIT)
Copyright (c) sSegev