DBFILESFileCategoryTag
Objective-C
enum DBFILESFileCategoryTag : NSInteger {}
Swift
@frozen enum DBFILESFileCategoryTag : Int, @unchecked Sendable
The DBFILESFileCategoryTag
enum type represents the possible tag states
with which the DBFILESFileCategory
union can exist.
-
jpg, png, gif, and more.
Declaration
Objective-C
DBFILESFileCategoryImage
Swift
case image = 0
-
doc, docx, txt, and more.
Declaration
Objective-C
DBFILESFileCategoryDocument
Swift
case document = 1
-
pdf.
Declaration
Objective-C
DBFILESFileCategoryPdf
Swift
case pdf = 2
-
xlsx, xls, csv, and more.
Declaration
Objective-C
DBFILESFileCategorySpreadsheet
Swift
case spreadsheet = 3
-
ppt, pptx, key, and more.
Declaration
Objective-C
DBFILESFileCategoryPresentation
Swift
case presentation = 4
-
mp3, wav, mid, and more.
Declaration
Objective-C
DBFILESFileCategoryAudio
Swift
case audio = 5
-
mov, wmv, mp4, and more.
Declaration
Objective-C
DBFILESFileCategoryVideo
Swift
case video = 6
-
dropbox folder.
Declaration
Objective-C
DBFILESFileCategoryFolder
Swift
case folder = 7
-
dropbox paper doc.
Declaration
Objective-C
DBFILESFileCategoryPaper
Swift
case paper = 8
-
any file not in one of the categories above.
Declaration
Objective-C
DBFILESFileCategoryOthers
Swift
case others = 9
-
(no description).
Declaration
Objective-C
DBFILESFileCategoryOther
Swift
case other = 10