多種多樣效果的狀態(tài)欄提示
作者:佚名
demo可以提供多種多樣的狀態(tài)欄提示效果,可以控制狀態(tài)提示從4個方向的進出,并有柔和或彈跳的效果,可以自定義提示內(nèi)容。
源碼簡介
demo可以提供多種多樣的狀態(tài)欄提示效果,可以控制狀態(tài)提示從4個方向的進出,并有柔和或彈跳的效果,可以自定義提示內(nèi)容。
源碼運行截圖
\
源碼片段:
- - (IBAction)btnShowNotificationPressed:(UIButton *)sender {
- [CRToastManager showNotificationWithOptions:[self options]
- apperanceBlock:^(void) {
- NSLog(@"Appeared");
- }
- completionBlock:^(void) {
- NSLog(@"Completed");
- }];
- }
- - (IBAction)btnPrintIdentifiersPressed:(UIButton *)sender {
- NSLog(@"%@", [CRToastManager notificationIdentifiersInQueue]);
- }
- - (IBAction)btnDismissNotificationPressed:(UIButton *)sender {
- [CRToastManager dismissNotification:YES];
- }
- CRToastAnimationType CRToastAnimationTypeFromSegmentedControl(UISegmentedControl *segmentedControl) {
- return segmentedControl.selectedSegmentIndex == 0 ? CRToastAnimationTypeLinear :
- segmentedControl.selectedSegmentIndex == 1 ? CRToastAnimationTypeSpring :
- CRToastAnimationTypeGravity;
- }
源碼鏈接:http://down.51cto.com/data/1983082
責(zé)任編輯:chenqingxiang
來源:
網(wǎng)絡(luò)整理