_ObjCBrushSpriteModel

@available(iOS 9.0, *)
@objcMembers
@objc(PESDKBrushSpriteModel)
public final class _ObjCBrushSpriteModel : _ObjCSpriteModel

This class should only be used if you are using Objective-C. It is a wrapper class for BrushSpriteModel. For more information about the type, please take a look at the documentation for BrushSpriteModel.

Accessors

  • This is a boxed property which exposes a Swift struct to Objective-C. This property should only be used if you are using Objective-C.

    Every invocation of the getter will return a new (temporary) object wrapping the underlying Swift struct. Boxed properties cannot be chained with the dot syntax for mutable access of nested properties in place. Use the setter with the assignment operator instead to modify boxed properties, e.g.:

    PESDKPhotoEditModel *photoEditModel = [[PESDKPhotoEditModel alloc] init];
    
    // CORRECT:
    // get boxed `AdjustmentModel`
    PESDKAdjustmentModel *adjustmentModel = photoEditModel.adjustmentModel;
    // modify boxed `AdjustmentModel`
    adjustmentModel.brightness = 0.5;
    // set modified boxed `AdjustmentModel`
    photoEditModel.adjustmentModel = adjustmentModel;
    
    // WRONG:
    photoEditModel.adjustmentModel.brightness = 0.5;
    

    Declaration

    Swift

    public var paths: [_ObjCPathModel] { get set }