I'm using AFNetworking's UIImageView+AFNetworking category to asynchronously load images in my application. I added the AppBoy SDK and it specifies SDWebImage as a dependency. Both frameworks implement a function called setImageWithURL. Is there a way to specify which framework category function I want to use when I call setImageWithURL on an UIImageView?
Sample code:
[imageView1 setImageWithURL:[NSURL URLWithString:imageSource1]];
calls SDWebImage's function and not AFNetworking's.