Classes

The following classes are available globally.

  • A AWFEdgeSwipeGestureRecognizer looks for panning (dragging) gestures that start near an edge of a particular view instead of the screen.

    See more

    Declaration

    Objective-C

    @interface AWFEdgeSwipeGestureRecognizer : UIPanGestureRecognizer

    Swift

    class AWFEdgeSwipeGestureRecognizer : UIPanGestureRecognizer
  • AWFGraphRenderer is the base class used to render series data onto a graph view. This class should not be used alone and must be subclassed to provide all drawing based on the desired result and renderer type.

    See more

    Declaration

    Objective-C

    @interface AWFGraphRenderer : NSObject

    Swift

    class AWFGraphRenderer : NSObject
  • The AWFGraphSeries class manages an array of AWFSeriesItem instances that are associated with a graph view. This class also provides utility methods for getting additional information about all of the series items managed by it.

    See more

    Declaration

    Objective-C

    @interface AWFGraphSeries : NSObject

    Swift

    class AWFGraphSeries : NSObject
  • The AWFSeriesItem class represents a single dataset that is displayed in a graph view. This class parses and stores its data as well as provides the necessary styling configuration for a graph renderer.

    See more

    Declaration

    Objective-C

    @interface AWFSeriesItem : NSObject <NSCopying>

    Swift

    class AWFSeriesItem : NSObject, NSCopying
  • AWFSeriesPoint represents a single data point on a graph within a series. The values for both x- and y-axis should be defined for the series point to be valid.

    See more

    Declaration

    Objective-C

    @interface AWFSeriesPoint : NSObject

    Swift

    class AWFSeriesPoint : NSObject
  • An AWFTableSection object is a convenience class to manage an array of sections and rows to display within a UITableView.

    See more

    Declaration

    Objective-C

    @interface AWFTableSection

    Swift

    class AWFTableSection
  • An AWFTableSectionRow object manages a single row option that is displayed within a UITableView.

    See more

    Declaration

    Objective-C

    @interface AWFTableSectionRow

    Swift

    class AWFTableSectionRow