Customization.h 823 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // Customization.h
  3. // CardinalEMVCoSDK
  4. //
  5. // Copyright © 2018 Cardinal Commerce. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. /**
  9. * The Customization class serves as a superclass for the ButtonCustomization class, ToolbarCustomization class, LabelCustomization class, and TextBoxCustomization class.
  10. * This class provides methods to pass UI customization parameters to the 3DS SDK.
  11. */
  12. @interface Customization : NSObject
  13. /**
  14. * @property textFontName Font type for the UI element.
  15. */
  16. @property (nonatomic, strong) NSString* textFontName;
  17. /**
  18. * @property textColor Color code in Hex format. For example, the color code can be “#999999”.
  19. */
  20. @property (nonatomic, strong) NSString* textColor;
  21. /**
  22. * @property textFontSize Font size for the UI element.
  23. */
  24. @property int textFontSize;
  25. @end