源码介绍该demo可以提供多种状态栏提示效果,可以控制状态提示从4个方向进入和退出,有柔和或弹跳效果。您可以自定义提示内容。源代码运行截图\源代码片段:-(IBAction)btnShowNotificationPressed:(UIButton*)sender{[CRToastManagershowNotificationWithOptions:[selfoptions]apperanceBlock:^(void){NSLog(@"Appeared");}completionBlock:^(void){NSLog(@"Completed");}];}-(IBAction)btnPrintIdentifiersPressed:(UIButton*)sender{NSLog(@"%@",[CRToastManagernotificationIdentifiersInQueue]);}-(IBAction)btnDismissNotificationPressed:(UIButton*)sender{[CRToastManagerdismissNotification:YES];}CRToastAnimationTypeCRToastAnimationTypeFromSegmentedControl(UISegmentedControl*segmentedControl){returnsegmentedControl.selectedSegmentIndex==0?CRToastAnimationTypeLinear:segmentedControl.selectedSegmentIndex==1?CRToastAnimationTypeSpring:CRToastAnimationType.5:link1c;}源代码
