JWSkinStyling

@interface JWSkinStyling : NSObject

JWSkinStyling enables the customization of the player’s UI skin.

  • url

    If using an external CSS file to style your player, this must be specified here.

    Declaration

    Objective-C

    @property (nonatomic, copy, readwrite, nullable) NSString *url;
  • The name of your custom skin to use for styling the player. If you are specifying a URL, you must set the name property to match the class name in your CSS file.

    Declaration

    Objective-C

    @property (nonatomic, copy, readwrite, nullable) NSString *name;
  • The customization options for the control bar.

    Declaration

    Objective-C

    @property (nonatomic, retain, readwrite, nullable)
        JWControlbarStyling *controlbar;
  • The customization options for the time slider.

    Declaration

    Objective-C

    @property (nonatomic, retain, readwrite, nullable)
        JWTimesliderStyling *timeslider;
  • The customization options for the menus.

    Declaration

    Objective-C

    @property (nonatomic, retain, readwrite, nullable) JWMenusStyling *menus;
  • The customization options for the tooltips.

    Declaration

    Objective-C

    @property (nonatomic, retain, readwrite, nullable) JWTooltipsStyling *tooltips;
  • Customizes the active color for all UI elements.

    Declaration

    Objective-C

    @property (nonatomic, retain, readwrite, nullable) UIColor *active;
  • Customizes the inactive color for all UI elements.

    Declaration

    Objective-C

    @property (nonatomic, retain, readwrite, nullable) UIColor *inactive;
  • Customizes the background color for all applicable UI elements.

    Declaration

    Objective-C

    @property (nonatomic, retain, readwrite, nullable) UIColor *background;