MBProgressHUD icon indicating copy to clipboard operation
MBProgressHUD copied to clipboard

Small fix request for legacy release

Open koenvanderdrift opened this issue 5 years ago • 0 comments

Please update the following two lines in the legacy release to make the compiler happy:

In MDProgressHUD.h:

-typedef void (^MBProgressHUDCompletionBlock)();
+typedef void (^MBProgressHUDCompletionBlock)(void);

In MDProgressHUD.m:

-- (void)showAnimated:(BOOL)animated whileExecutingBlock:(dispatch_block_t)block completionBlock:(void (^)())completion {
+- (void)showAnimated:(BOOL)animated whileExecutingBlock:(dispatch_block_t)block completionBlock:(void (^)(void))completion {

I tried to push these, but I do not have the privileges.

koenvanderdrift avatar May 25 '20 17:05 koenvanderdrift