CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ | 
| LangLanguage | Obj-CObjective C | 
| License | MIT | 
| ReleasedLast Release | Mar 2015 | 
Maintained by Christian Schwarz.
Easy to use, semi-translucent and blurring notification view that drops into UIView, UITableView, UICollectionView.
Also supports displaying progress.
Supports iOS 7 and iOS 8. Requires Xcode 6.
[CSNotificationView showInViewController:self
                                    style:CSNotificationViewStyleError
                                  message:@"A critical error happened."];
[CSNotificationView showInViewController:self
                                    style:CSNotificationViewStyleSuccess
                                  message:@"Great, it works."];
CSNotificationView* note = (...);
note.showingActivity = YES;
[note setVisible:YES animated:YES completion:nil];
(...)
[note dismissWithStyle:CSNotificationViewStyleSuccess message:@"Success!"
          duration:kCSNotificationViewDefaultShowDuration animated:YES];Handle tap events on the notification using a block callback
    __block typeof(self) weakSelf = self;
    self.loadingNotificationView.tapHandler = ^{
        [weakSelf cancelOperationXYZ];
        [weakSelf.loadingNotificationView dismissWithStyle:CSNotificationViewStyleError
                                       message:@"Cancelled"
                                      duration:kCSNotificationViewDefaultShowDuration animated:YES];
    };note.image = [UIImage imageNamed:@"mustache"];[CSNotificationView showInViewController:self
        tintColor:[UIColor colorWithRed:0.000 green:0.6 blue:1.000 alpha:1]
            image:nil
          message:@"No icon and a message that needs two rows and extra \
                    presentation time to be displayed properly."
         duration:5.8f];
See LICENSE.md