I am downloading an image from a url using UIImage+AFNetworking. How can I declare a variable of type UIImage+AFNetworking? Should it be
UIImage+AFNetworking *myRequest = [[ UIImage+AFNetworking....] ];
I know it does not make sense when we have a + sign in the middle. Please advice me if you know how to do it.
I guess this is only a category; by including the headerfile into your class, it will automatically extend the UIImage class with the AFNetworking functionality.
Means:
Best,
Christian