Class Method
allBezierShapes
Get information about all the provided bezier shapes.
Declaration
+(NSArray *)allBezierShapes;
Return Value
An array of dictionaries that contain information about the provided bezier shapes. For instance, following is an example that may be returned:
@[
@{
HSWidgetBezierShapeEnumKey : @(HSWidgetBezierShapeRoundedRect),
HSWidgetBezierShapeDisplayNameKey : @"Rounded Rectangle (Default)"
},
@{
HSWidgetBezierShapeEnumKey : @(HSWidgetBezierShapeRect),
HSWidgetBezierShapeDisplayNameKey : @"Rectangle"
},
...
]
Topics
Accessing Values
-
HSWidgetBezierShapeEnumKey
Key to access the enum value object.
-
HSWidgetBezierShapeDisplayNameKey
Key to access the display name object.
Related Links
Bezier Shapes
-
HSWidgetBezierShape
Constants for specifying a bezier shape.
-
+ bezierPathForRect:withShape:lineThickness:
Get the bezier path for the specified bezier shape.