RMUniversalAlert icon indicating copy to clipboard operation
RMUniversalAlert copied to clipboard

Wrapper class for UIAlertView / UIActionSheet / UIAlertController for targeting all iOS versions.

Results 11 RMUniversalAlert issues
Sort by recently updated
recently updated
newest added

I realized the properties of basic alert references inside `RMUniversalAlert` doesn't have memory management attributes. As you know, the default property attributes with ARC is `strong`. - https://useyourloaf.com/blog/default-property-attributes-with-arc/ ```objective-c @property...

Recently Cocoapods must assign target on `Podfile` since version `1.0.0`. And `link_with` are removed. - [https://github.com/CocoaPods/CocoaPods/releases/tag/1.0.0] If you don't, you can see the following error message. ``` Analyzing dependencies [!]...

``` alert.alertController = [UIAlertController showAlertInViewController:viewController withTitle:title message:message cancelButtonTitle:cancelButtonTitle destructiveButtonTitle:destructiveButtonTitle otherButtonTitles:otherButtonTitles tapBlock:^(UIAlertController *controller, UIAlertAction *action, NSInteger buttonIndex){ if (tapBlock) { //the var ‘weakAlert’ is nil tapBlock(alert, buttonIndex); alert = nil; }...

This PR is related to #20 issue. When I show actionsheet on iPad using the following method, my app was always crashed without passing the **popoverPresentationControllerBlock**. ```objective-c + (instancetype)showActionSheetInViewController:(UIViewController *)viewController...

So for my implementation is as below. ``` [self showActionSheetWithTitle:@"My View" message:nil cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@[@"A", @"B", @"C"] popoverPresentationControllerBlock:^(RMPopoverPresentationController *popover){ popover.sourceView = self.view; popover.sourceRect = self.view.frame; } tapBlock:^(RMUniversalAlert * _Nonnull alert,...

This method contains no initializer, which forces its users to automatically show an alert when the class is instantiated. If for some reason you want to programmatically close the alertview/actionsheet...

I'm unable to get my app to launch on the iOS 7.1 Simulator: ``` dyld: Symbol not found: _OBJC_CLASS_$_UIAlertAction Referenced from: /Users/cbowns/Library/Developer/CoreSimulator/Devices/2C081425-10FD-4DC6-965F-3B43868EBEA2/data/Applications/0A94D6FB-64B8-4A0F-B0D8-0D08C51E6CFC/App.app/App ``` I was able to fix this by...

Since version 0.9 breaks UIAlertView+Blocks, UIActionSheet+Blocks, and UIAlertController+Blocks my project can't compile. Maybe use a fixed version like ~> 0.8 to prevent this from happening in the future. Or can...