We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See below:
It makes sense, since kf is a struct, setting a property would have to change kf on the image view but I believe you only have a getter for that.
kf
Using kf_indicatorType = .activity continues to work but shows the deprecation warning
kf_indicatorType = .activity
The text was updated successfully, but these errors were encountered:
I should have been more clear, this does not compile:
let imageView = UIImageView() imageView.kf.indicatorType = .activity
But this does:
var imageView = UIImageView() imageView.kf.indicatorType = .activity
The screenshot I posted is my own extension on UIImageView which I guess is the same thing as the let case
UIImageView
let
Sorry, something went wrong.
:( You are right. I will take a look to see what we could do for it.
Fixed in #470
No branches or pull requests
See below:
It makes sense, since
kf
is a struct, setting a property would have to changekf
on the image view but I believe you only have a getter for that.Using
kf_indicatorType = .activity
continues to work but shows the deprecation warningThe text was updated successfully, but these errors were encountered: