PLVImageUploadState
Objective-C
NS_ENUM(NSInteger, PLVImageUploadState) {
PLVImageUploadStateReady = 0,
PLVImageUploadStateUploading,
PLVImageUploadStateFailed,
PLVImageUploadStateSuccess
}
Swift
enum PLVImageUploadState : Int, @unchecked Sendable
Undocumented
-
Undocumented
Declaration
Objective-C
PLVImageUploadStateReady = 0
Swift
case ready = 0
-
Undocumented
Declaration
Objective-C
PLVImageUploadStateUploading
Swift
case uploading = 1
-
Undocumented
Declaration
Objective-C
PLVImageUploadStateFailed
Swift
case failed = 2
-
Undocumented
Declaration
Objective-C
PLVImageUploadStateSuccess
Swift
case success = 3