🇨🇳中文文档说明
- A fantastic way to select your buttons by NinaSelectionView.
- Low coupling to pop NinaSelectionView,just with one-line code methods to use it.
- Like AliPay pop style,and you can use it more flexible.
- Supports 12 pop styles,you can pop from above,below,left and right.
- Pop to anywhere as you wish.
- Support scroll when NinaSelection's height or width is longer than screen's.
- NinaSelectionView buttons can drag and exchange as you wish.
- Support Spring animation and normal animation.
Drop in the Classes folder to your Xcode project.
You can also use cocoapods.
Using CocoaPods
Add pod 'NinaSelectionView'
to your Podfile
and run pod install
.
pod 'NinaSelectionView'
You need add 'NinaSelectionView.h'(CocoaPods) to your project.Then load the codes:
NinaSelectionView *ninaSelectionView = [[NinaSelectionView alloc] initWithTitles:[self titlesArray] PopDirection:NinaPopFromAboveToTop];
[self.view addSubview:ninaSelectionView];
Then when you wanna show or dismiss NinaSelectionView,you need use:
[self.ninaSelectionView showOrDismissNinaViewWithDuration:0.5 usingNinaSpringWithDamping:0.8 initialNinaSpringVelocity:0.3];
or
[self.ninaSelectionView showOrDismissNinaViewWithDuration:0.5];
Yeah,that's all!
- You can set necessary Array by following codes(please read the Example notes if you wanna to know more).
NSArray *titleArray = @[
@"Curry",
@"Thompson",
@"Green",
@"Iguodala",
@"Durant"
];
- To complete button actions,you need write NinaSelectionDelegate in your codes:
- (void)selectNinaAction:(UIButton *)button {
NSLog(@"Choose %li button",(long)button.tag);
}
- You can also set defaultSelected button,start from 1.
_ninaSelectionView.defaultSelected = 1;
- Meanwhile,shadow background also can be set.(You must set shadowEffect to YES first,then you can set shadowalpha)
_ninaSelectionView.shadowEffect = YES;
_ninaSelectionView.shadowAlpha = 0.4;
- If you wanna change buttons' parameters(column,width,height),you can go to UIParameter.h to change them.Meanwhile,you can change view' Y by using nina_popY in NinaSelectionView.
First Release.
- If you find bugs in this project or any suggestions,hope you can give me feedback by issues or Email me to zhaogengda@126.com.
This project uses MIT License.