FWImageCropOverlayView
@interface FWImageCropOverlayView : UIView
/** Hides the interior grid lines, sans animation. */
@property (nonatomic, assign) BOOL gridHidden;
/** Add/Remove the interior horizontal grid lines. */
@property (nonatomic, assign) BOOL displayHorizontalGridLines;
/** Add/Remove the interior vertical grid lines. */
@property (nonatomic, assign) BOOL displayVerticalGridLines;
/** Shows and hides the interior grid lines with an optional crossfade animation. */
- (void)setGridHidden:(BOOL)hidden animated:(BOOL)animated;
@end
Undocumented
-
Hides the interior grid lines, sans animation.
Declaration
Objective-C
@property (nonatomic) BOOL gridHidden;
-
Add/Remove the interior horizontal grid lines.
Declaration
Objective-C
@property (nonatomic) BOOL displayHorizontalGridLines;
-
Add/Remove the interior vertical grid lines.
Declaration
Objective-C
@property (nonatomic) BOOL displayVerticalGridLines;
-
Shows and hides the interior grid lines with an optional crossfade animation.
Declaration
Objective-C
- (void)setGridHidden:(BOOL)hidden animated:(BOOL)animated;