Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 742 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 742 Bytes

KYShareMenu

带弹性动画的分享菜单

##Usage

本Demo使用了onevcatVVBlurPresentation实现present之后背景模糊。

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    KYShareViewController *shareVC = segue.destinationViewController;
    shareVC.delegate = self;
    shareVC.blurStyle = UIBlurEffectStyleDark;
}

或者

-(IBAction)showMenu:(id)sender{
    KYShareViewController *shareVC = segue.destinationViewController;
    shareVC.delegate = self;
    shareVC.blurStyle = UIBlurEffectStyleDark;
    [self presentViewController:shareVC animated:YES completion:nil];
}

##Required

iOS8+