0

enter image description here

Struggling to figure out what the issue is I've been googling for a while now but haven't been able to figure out why the build fails with this error.

Also tried cleaning and rebuilding. Done a pod install and pod update but doesn't seem to fix anything.

Would love some advice on where to go forward from here.

rey123
  • 247
  • 1
  • 3
  • 11
  • Why name of class is "SDImageIOCoder 2.m"? Did you change it? I didn't find to in SDWebImage repo. – Nikdemm Aug 18 '20 at 22:32
  • https://github.com/SDWebImage/SDWebImage/blob/e7b87885ae3d73b3ed9e2c28f3c5a164305f9ef8/SDWebImage/Core/SDImageIOCoder.m – Nikdemm Aug 18 '20 at 22:32
  • I've just ended up deleting it now get this error -> 'GoogleMaps/GoogleMaps.h' file not found – rey123 Aug 18 '20 at 22:34

1 Answers1

0

The createFrameAtIndex:source:scale:preserveAspectRatio:thumbnailSize: is probably declared as an instance method, but you are calling it directly on the class instead of on an instance of this class.

Make sure that it has the right declaration, + (UIImage*)createFrameAtIndex:... for a class method, or - (UIImage*)createFrameAtIndex:... for an instance method.

See Error "No known class method for selector 'Hello:'" in custom-made framework details.

Guilmo
  • 230
  • 1
  • 7