EZAudioDisplayLinkDelegate

@protocol EZAudioDisplayLinkDelegate <NSObject>

The EZAudioDisplayLinkDelegate provides a means for an EZAudioDisplayLink instance to notify a receiver when it should redraw itself.

  • Required method for an EZAudioDisplayLinkDelegate to implement. This fires at the screen’s display rate (typically 60 fps). - parameter: displayLink An EZAudioDisplayLink instance used by a receiver to draw itself at the screen’s refresh rate.

    Declaration

    Objective-C

    - (void)displayLinkNeedsDisplay:(EZAudioDisplayLink *)displayLink;

    Swift

    func displayLinkNeedsDisplay(_ displayLink: EZAudioDisplayLink!)

    Parameters

    displayLink

    An EZAudioDisplayLink instance used by a receiver to draw itself at the screen’s refresh rate.