BTUIKCardListLabel.h 498 B

12345678910111213
  1. #import <UIKit/UIKit.h>
  2. #import "BTUIKPaymentOptionType.h"
  3. /// @class A UILabel that contains images representing multiple BTUIKPaymentOptionType's
  4. @interface BTUIKCardListLabel : UILabel
  5. /// The array of BTUIKPaymentOptionType's to display
  6. @property (nonatomic, copy) NSArray *availablePaymentOptions;
  7. /// The BTUIKPaymentOptionType to emphasize by fading all other payment methods included in availablePaymentOptions
  8. - (void)emphasizePaymentOption:(BTUIKPaymentOptionType)paymentOption;
  9. @end