gitextract_ir399rag/ ├── DBAttachmentPickerController.podspec ├── Example/ │ ├── Classes/ │ │ ├── NSDateFormatter+DBLibrary.h │ │ ├── NSDateFormatter+DBLibrary.m │ │ ├── ViewController.h │ │ └── ViewController.m │ ├── DBAttachmentPickerControllerExample/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Common/ │ │ │ ├── DBAssetImageView.h │ │ │ └── DBAssetImageView.m │ │ ├── DBAttachmentPickerControllerExample.entitlements │ │ ├── Info.plist │ │ ├── main.m │ │ └── ru.lproj/ │ │ └── LaunchScreen.strings │ ├── DBAttachmentPickerControllerExample.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcuserdata/ │ │ └── denisbogatyrev.xcuserdatad/ │ │ └── xcschemes/ │ │ └── DBAttachmentPickerControllerExample.xcscheme │ └── Resources/ │ └── Assets.xcassets/ │ ├── AppIcon.appiconset/ │ │ └── Contents.json │ ├── AttachFileIcon.imageset/ │ │ └── Contents.json │ └── Contents.json ├── LICENSE ├── README.md └── Source/ ├── Categories/ │ ├── NSBundle+DBLibrary.h │ ├── NSBundle+DBLibrary.m │ ├── NSIndexSet+DBLibrary.h │ ├── NSIndexSet+DBLibrary.m │ ├── UIImage+DBAssetIcons.h │ └── UIImage+DBAssetIcons.m ├── Cells/ │ ├── DBAssetGroupCell.h │ ├── DBAssetGroupCell.m │ ├── DBAssetGroupCell.xib │ ├── DBThumbnailPhotoCell.h │ ├── DBThumbnailPhotoCell.m │ └── DBThumbnailPhotoCell.xib ├── Common/ │ ├── DBAssetImageView.h │ └── DBAssetImageView.m ├── DBAssetPickerController/ │ ├── DBAssetGroupsViewController.h │ ├── DBAssetGroupsViewController.m │ ├── DBAssetGroupsViewController.xib │ ├── DBAssetItemsViewController.h │ ├── DBAssetItemsViewController.m │ ├── DBAssetItemsViewController.xib │ ├── DBAssetPickerController.h │ └── DBAssetPickerController.m ├── DBAttachmentAlertController/ │ ├── DBAttachmentAlertController.h │ └── DBAttachmentAlertController.m ├── DBAttachmentPickerController.h ├── DBAttachmentPickerController.m ├── Localization/ │ ├── de.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ ├── en.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ ├── es.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ ├── fr.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ ├── ja.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ ├── pl-PL.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ ├── pt-BR.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ ├── ru.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ ├── uk.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ ├── zh-Hans.lproj/ │ │ ├── DBAttachmentPickerController.strings │ │ └── DBAttachmentPickerController.stringsdict │ └── zh-Hant.lproj/ │ ├── DBAttachmentPickerController.strings │ └── DBAttachmentPickerController.stringsdict └── Models/ ├── DBAttachment.h └── DBAttachment.m