UrbanApps/UAProgressView

There is a warning.

Closed this issue · 2 comments

  • (void)animateToProgress:(CGFloat)progress {

    ......

    animation.delegate = self; ( Assigning to 'id _Nullable' from incompatible type 'UAProgressView *const __strong')

    ......
    }

In the UAProgressView.h file, replace the string
@interface UAProgressView : UIView
by
@interface UAProgressView : UIView <CAAnimationDelegate>

Please submit a pull request