MRProgress icon indicating copy to clipboard operation
MRProgress copied to clipboard

Collection of iOS drop-in components to visualize progress

Results 37 MRProgress issues
Sort by recently updated
recently updated
newest added

Can we have new release or tag for Xcode 15 fix for MRProgress

In Xcode 15.0 and 15.1, there is a compilation error at MRProgressOverlayView.m:811: ```swift [((id)self.modeView) setProgress:self.progress]; ``` > Multiple methods named 'setProgress:' found with mismatched result, parameter type or attributes There...

`MRProgressHelper.h` and `MRBlurView.m` call `+[UIApplication sharedApplication]`, which is not available in App Extensions, meaning that MRProgress will not compile for extension targets. > MRProgress/src/Utils/MRProgressHelper.h:41:56: 'sharedApplication' is unavailable: not available on...

**MRProgressOverlayView.showOverlayAdded(to: self.view, title: text, mode: .indeterminateSmallDefault, animated: true)** i have added code to MRProgress and working fine but i need to change activity indicator colour from gray to orange. So,...

fix waring of iOS 10 check changed api https://developer.apple.com/library/content/releasenotes/General/iOS10APIDiffs/Objective-C/QuartzCore.html

Please add carthage support

Hi, I want to send the MRProgressView to the other viewController. I used it like this but it did not work. FirstViewController.m ``` self.overlayView = [MRProgressOverlayView showOverlayAddedTo:self.navigationController.view animated:YES]; self.overlayView.mode =...

I updated to Swift 3 and now I'm getting a crash every time I call "showOverlayAddedto" MRProgressOverlayView.showOverlayAdded(to: self.view, title: "Connecting...", mode: .indeterminate, animated: true) See error below: 016-10-28 13:48:10.541[6475:86244] **\*...

Hello, trying to use MRProgress with AVAssetExportSession in swift 2.2 I want to display the overlay according the the session.progress value (going from 0 to 1). It seems however that...