Classes
The following classes are available globally.
-
A
See moreAWFEdgeSwipeGestureRecognizer
looks for panning (dragging) gestures that start near an edge of a particular view instead of the screen.Declaration
Objective-C
@interface AWFEdgeSwipeGestureRecognizer : UIPanGestureRecognizer
Swift
class AWFEdgeSwipeGestureRecognizer : UIPanGestureRecognizer
-
See moreAWFGraphRenderer
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.Declaration
Objective-C
@interface AWFGraphRenderer : NSObject
Swift
class AWFGraphRenderer : NSObject
-
The
See moreAWFGraphSeries
class manages an array ofAWFSeriesItem
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.Declaration
Objective-C
@interface AWFGraphSeries : NSObject
Swift
class AWFGraphSeries : NSObject
-
The
See moreAWFSeriesItem
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.Declaration
Objective-C
@interface AWFSeriesItem : NSObject <NSCopying>
Swift
class AWFSeriesItem : NSObject, NSCopying
-
See moreAWFSeriesPoint
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.Declaration
Objective-C
@interface AWFSeriesPoint : NSObject
Swift
class AWFSeriesPoint : NSObject
-
An
See moreAWFTableSection
object is a convenience class to manage an array of sections and rows to display within aUITableView
.Declaration
Objective-C
@interface AWFTableSection
Swift
class AWFTableSection
-
An
See moreAWFTableSectionRow
object manages a single row option that is displayed within aUITableView
.Declaration
Objective-C
@interface AWFTableSectionRow
Swift
class AWFTableSectionRow