Caishen icon indicating copy to clipboard operation
Caishen copied to clipboard

Card image for custom card type

Open ThibaultKlein opened this issue 8 years ago • 2 comments

Hi there,

Is there an easy way to provide a custom image for a custom card type?

I noticed that I could "hack" by having the card image name equal to the card type name, but imageForCardType is using self as the bundle, which returns nil if the image is contained in the project bundle and not the pod bundle.

public func imageForCardType(cardType: CardType) -> UIImage? {
    return UIImage(named: cardType.name, inBundle: self, compatibleWithTraitCollection: nil)
}

Thank you for your help!

ThibaultKlein avatar Aug 01 '16 11:08 ThibaultKlein

Hey! You should be able to implement and provide a CardTypeImageStore for a CardTextField yourself. This should be possible by either:

  • copying the images from Caishen to your main bundle and setting NSBundle.mainBundle() as this image store
  • or by implementing the CardTypeImageStore protocol with something like:
func imageForCardType(cardType: CardType) -> UIImage? {
  switch cardType {
    case .YourCardType:
      return yourImage
    default:
      return NSBundle(forClass: CardTextField.self).imageForCardType(cardType)
  }
}

DannyVancura avatar Aug 01 '16 16:08 DannyVancura

Thank you @DannyVancura, it works if I do your solution, although I still think there should be a way to provide a custom image without duplicating assets in our project. Ideally, we would like to specify the image in the card type model so it's trivial to create a new card type and provide all the structure you want at the same place. Let me know your thoughts on that!

ThibaultKlein avatar Aug 02 '16 11:08 ThibaultKlein