├── .gitattributes ├── .gitignore ├── 3DTouch ├── 3DTouch.xcodeproj │ └── project.pbxproj └── 3DTouch │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── ActivityIndicator ├── .gitignore ├── ActivityIndicator.xcodeproj │ └── project.pbxproj └── ActivityIndicator │ ├── ActivityIndicator │ ├── ActivityIndicator.swift │ ├── ActivityIndicatorCounter.swift │ ├── ActivityIndicatorView.swift │ ├── GlobalActivityIndicator.swift │ └── UIBlockable.swift │ ├── ActivityIndicatorObject.swift │ ├── ActivityIndicatorPresenter.swift │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── GlobalActivityIndicator.swift │ └── ViewController.swift ├── ActivityViewController ├── ActivityViewController.xcodeproj │ └── project.pbxproj └── ActivityViewController │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── ic_settings.imageset │ │ ├── Contents.json │ │ └── ic_settings.pdf │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── AlamofireTest ├── AlamofireTest.xcodeproj │ └── project.pbxproj ├── AlamofireTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── AlternateIcon ├── AlternateIcon.xcodeproj │ └── project.pbxproj └── AlternateIcon │ ├── AlternativeIcons │ ├── adn.png │ ├── adn@2x.png │ ├── adn@3x.png │ ├── home.png │ ├── home@2x.png │ ├── home@3x.png │ ├── soccer.png │ ├── soccer@2x.png │ └── soccer@3x.png │ ├── AppDelegate.swift │ ├── AppIconCell.swift │ ├── AppIconManager.swift │ ├── AppIconPicker.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60.png │ │ ├── Icon-60@2x-1.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x-1.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── Icon-Spotlight-40.png │ │ ├── Icon-Spotlight-40@2x.png │ │ └── Icon-Spotlight-40@3x.png │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── UIApplication+Icon.swift │ └── ViewController.swift ├── AnimatablePopup ├── .gitignore ├── AnimatablePopup.xcodeproj │ └── project.pbxproj └── AnimatablePopup │ ├── AnimatablePopup.swift │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── PopupController.swift │ ├── PopupView.swift │ └── ViewController.swift ├── AnimatedTabBarController ├── AnimatedTabBarController.xcodeproj │ └── project.pbxproj └── AnimatedTabBarController │ ├── AnimatedTabBarController.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── AnimationStackView ├── AnimationStackView.xcodeproj │ └── project.pbxproj └── AnimationStackView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── icon.imageset │ │ ├── Contents.json │ │ ├── iocn.png │ │ ├── iocn@2x.png │ │ └── iocn@3x.png │ └── logo.imageset │ │ ├── Contents.json │ │ └── logo.png │ ├── AutoTextView.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── AnimationsAll ├── .gitignore ├── AnimationsAll.xcodeproj │ └── project.pbxproj ├── AnimationsAll │ ├── AnimationFlowManager.swift │ ├── AppDelegate.swift │ ├── AppearingController.swift │ ├── AppearingTableViewCellsController.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── ferrari.imageset │ │ │ ├── Contents.json │ │ │ └── ws_Red_Ferrari_458_Italia_GT3_Side_Angle_640x960.jpg │ ├── Base.lproj │ │ ├── Appearing.storyboard │ │ ├── AppearingTableViewCellsController.storyboard │ │ ├── Dynamic.storyboard │ │ ├── Dynamic~.storyboard │ │ ├── LaunchScreen.storyboard │ │ ├── Main.storyboard │ │ ├── ModalCustomPresentController.storyboard │ │ ├── ModalCustomPresentController~.storyboard │ │ └── PopUp.storyboard │ ├── BlurController.swift │ ├── CellHeightController.swift │ ├── DynamicController.swift │ ├── InfinityRotater.swift │ ├── Info.plist │ ├── ModalCustomPresentController.swift │ ├── MotionEffectController.storyboard │ ├── MotionEffectController.swift │ ├── PopUpByCustomClass.storyboard │ ├── PopUpByCustomViewController.swift │ ├── PopUpController.swift │ ├── PopUpFromMin.storyboard │ ├── PopUpFromMinController.swift │ ├── PopUpView.swift │ ├── SomeRoundButton.swift │ └── TableViewController.swift ├── AnimationsAllTests │ ├── AnimationsAllTests.swift │ └── Info.plist └── AnimationsAllUITests │ ├── AnimationsAllUITests.swift │ └── Info.plist ├── Appearance ├── Appearance.xcodeproj │ └── project.pbxproj └── Appearance │ ├── AppDelegate.swift │ ├── AppearanceConfigurator.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── UISearchBar+Properties.swift │ ├── UITextField+Properties.swift │ └── ViewController.swift ├── AppearanceConfigurator ├── AppearanceConfigurator.xcodeproj │ └── project.pbxproj └── AppearanceConfigurator │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Assert ├── Assert.xcodeproj │ └── project.pbxproj └── Assert │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Dispatch+Assert.swift │ ├── Info.plist │ ├── Optional+Assert.swift │ └── ViewController.swift ├── AsyncDisplayKitTest ├── AsyncDisplayKitTest.xcodeproj │ └── project.pbxproj ├── AsyncDisplayKitTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── chat_bubble.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 2.png │ │ │ ├── Group 2@2x.png │ │ │ └── Group 2@3x.png │ │ └── chat_bubble_mine.imageset │ │ │ ├── Contents.json │ │ │ ├── Group 2.png │ │ │ ├── Group 2@2x.png │ │ │ └── Group 2@3x.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── TableCell.swift │ ├── TableController.swift │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── AttemptsCounter ├── .gitignore ├── AttemptsCounter.xcodeproj │ └── project.pbxproj └── AttemptsCounter │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── AttemptsCounter.swift │ ├── AttemptsCounterUserDefaults.swift │ ├── Base.lproj │ └── Main.storyboard │ ├── StorageForID.swift │ ├── UniqueUserDefaults.swift │ └── ViewController.swift ├── AttributedString ├── AttributedString.xcodeproj │ └── project.pbxproj └── AttributedString │ ├── ASLabel.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TappableLabel.swift │ └── ViewController.swift ├── AudioComponents ├── AudioComponents.xcodeproj │ └── project.pbxproj └── AudioComponents │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── AvailableDatePicker ├── AvailableDatePicker.xcodeproj │ └── project.pbxproj └── AvailableDatePicker │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── AvailableDatePicker.swift │ ├── AvailableDatePickerClasses.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Collection+Safe.swift │ ├── Info.plist │ └── ViewController.swift ├── BackButtonHandler ├── .gitignore ├── BackButtonHandler.xcodeproj │ └── project.pbxproj ├── BackButtonHandler │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Icon-Back.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-Back@2x.png │ │ │ │ └── Icon-Back@3x.png │ │ │ ├── backArrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── backArrow@2x.png │ │ │ │ └── backArrow@3x.png │ │ │ ├── backIndicatorImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── backIndicatorImage.png │ │ │ ├── im_backButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── path82.pdf │ │ │ └── im_default_back_button.imageset │ │ │ │ ├── Chevron.pdf │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ ├── BackButton.swift │ ├── BackButtonController.swift │ ├── BackButtonHandler.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── UIColor+Adjust.swift │ └── ViewController.swift └── README.md ├── Background ├── Background.xcodeproj │ └── project.pbxproj ├── Background │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Classes │ │ ├── BackgroundLocationManager.swift │ │ ├── BackgroundTaskManager.swift │ │ ├── BatteryManager.swift │ │ └── EmailSender │ │ │ ├── EmailSender.swift │ │ │ ├── UIApplication+Controller.swift │ │ │ └── UIApplication+URL.swift │ ├── Logger.swift │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── BarcodeScanner ├── BarcodeScanner.xcodeproj │ └── project.pbxproj └── BarcodeScanner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Base.playground ├── Contents.swift ├── Resources │ └── quotes.json ├── Sources │ └── Helpers.swift └── contents.xcplayground ├── BiometricsManager ├── BiometricsManager.xcodeproj │ └── project.pbxproj └── BiometricsManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── BiometricsManager.swift │ ├── Device.swift │ ├── Info.plist │ ├── PasscodeEnter │ └── View │ │ ├── Passcode │ │ ├── PasscodeInputView.swift │ │ ├── PasscodeManager.swift │ │ ├── PasscodeState.swift │ │ ├── PasscodeStorage.swift │ │ ├── PasscodeView.swift │ │ ├── PasscodeViewImp.swift │ │ └── PasscodeViewImp.xib │ │ ├── PasscodeEnterViewController.swift │ │ └── PasscodeEnterViewController.xib │ └── ViewController.swift ├── BluetoothTest ├── BluetoothTest.xcodeproj │ └── project.pbxproj └── BluetoothTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── BluetoothManager.swift │ ├── Info.plist │ └── ViewController.swift ├── BrightnessManager ├── BrightnessManager.xcodeproj │ └── project.pbxproj └── BrightnessManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── BrightnessManager.swift │ ├── Info.plist │ └── ViewController.swift ├── COVID ├── COVID.xcodeproj │ └── project.pbxproj └── COVID │ ├── AppConfigurator.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CountiesController.swift │ ├── Country.swift │ ├── CountyDetailController.swift │ ├── CustomErrors.swift │ ├── Extensions.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── URLs.swift │ └── ViewController.swift ├── CSVDataBase ├── CSVDataBase.xcodeproj │ └── project.pbxproj └── CSVDataBase │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── CoreDataStack │ ├── CoreDataStack.swift │ ├── NSManagedObject+Extensions.swift │ ├── NSManagedObjectContext+Extensions.swift │ ├── PersistentContainer.swift │ └── StoreContainer.swift │ └── Info.plist ├── CacheManager ├── CacheManager.xcodeproj │ └── project.pbxproj └── CacheManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CrossPlatformImage+Extension.swift │ ├── DiskStorage.swift │ ├── ImageFormat.swift │ ├── Info.plist │ ├── MD5.swift │ ├── MemoryStorage.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── CameraManager ├── СameraManager.xcodeproj │ └── project.pbxproj └── СameraManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CameraManager3rdParty.swift │ ├── Info.plist │ ├── LayerResizeView.swift │ ├── ViewController.swift │ └── СameraManager.swift ├── ChatTests ├── ChatTests.xcodeproj │ └── project.pbxproj ├── ChatTests │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ChattoController.swift │ ├── DataProvider.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── ChatView ├── ChatView.xcodeproj │ └── project.pbxproj └── ChatView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── CircleProgress ├── .gitignore ├── CircleProgress.xcodeproj │ └── project.pbxproj └── CircleProgress │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── CircleView.swift │ └── ViewController.swift ├── CircularProgressView ├── CircularProgressView.xcodeproj │ └── project.pbxproj └── CircularProgressView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── iconCleaning.imageset │ │ ├── Contents.json │ │ └── iconCleaning.pdf │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CircularProgressView.swift │ ├── DisableAnimations.swift │ ├── Info.plist │ └── SceneDelegate.swift ├── ClearableSingleton ├── Singleton.xcodeproj │ └── project.pbxproj └── Singleton │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ClearableSingleton.swift │ ├── Info.plist │ └── ViewController.swift ├── CollapseExpandSectionTableView ├── CollapseExpandSectionTableView.xcodeproj │ └── project.pbxproj └── CollapseExpandSectionTableView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── TitleHeaderView.swift │ ├── TitleHeaderView.xib │ └── ViewController.swift ├── CollectionViewLayouts ├── CollectionViewLayouts.xcodeproj │ └── project.pbxproj └── CollectionViewLayouts │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── CollectionViewInTableView.storyboard │ ├── ColumnsCollectionLayout.storyboard │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CodeColCell.swift │ ├── CollectionDataSource.swift │ ├── CollectionTableView.swift │ ├── CollectionViewInTableViewController.swift │ ├── ColumnsCollectionLayout.swift │ ├── ColumnsCollectionLayoutController.swift │ ├── Info.plist │ ├── LeftAlignedCollectionLayout.swift │ ├── ResizableCollectionView.swift │ ├── SimpleColCell.swift │ ├── SimpleColCell.xib │ ├── String+Size.swift │ ├── TableCell.swift │ └── UICollectionView+Scroll.swift ├── ColorsFontsForIB ├── Customization.xcodeproj │ └── project.pbxproj └── Customization │ ├── AppDelegate.swift │ ├── Array+Execute.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── Ferrari.imageset │ │ ├── Contents.json │ │ └── Ferrari.jpg │ └── keyboard_icon.imageset │ │ ├── Contents.json │ │ └── keyboard_icon.png │ ├── AssociationManager.swift │ ├── BackgroundController.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ColorTypeCompatible.swift │ ├── Colors+Views.swift │ ├── Colors.swift │ ├── Colors1.swift │ ├── Fonts+AdvancedViews.swift │ ├── Fonts+Views.swift │ ├── Fonts.swift │ ├── Fonts1.swift │ ├── FontsController.swift │ ├── Images.swift │ ├── Info.plist │ └── ViewController.swift ├── ConcentrationGame ├── ConcentrationGame.xcodeproj │ └── project.pbxproj └── ConcentrationGame │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Emoji.swift │ ├── Game.swift │ ├── GameCell.swift │ ├── GameController.swift │ ├── GameModel.swift │ ├── GameSettingsController.swift │ └── Info.plist ├── ContactsManager ├── ContactsManager.xcodeproj │ └── project.pbxproj └── ContactsManager │ ├── ActivityIndicator │ ├── ActivityIndicator.swift │ ├── ActivityIndicatorCounter.swift │ ├── ActivityIndicatorView.swift │ ├── GlobalActivityIndicator.swift │ └── UIBlockable.swift │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── ContactsManager.swift │ ├── EmailSender │ ├── EmailSender.swift │ └── UIApplication+URL.swift │ ├── NoNameContactsController.swift │ └── ViewController.swift ├── CoreDataMulti ├── CoreDataMulti.xcodeproj │ └── project.pbxproj └── CoreDataMulti │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CoreDataMulti.xcdatamodeld │ ├── .xccurrentversion │ └── CoreDataMulti.xcdatamodel │ │ └── contents │ ├── CoreDataStack.swift │ ├── Info.plist │ ├── PostService.swift │ └── ViewController.swift ├── CoreDataWithoutDataModel ├── CoreDataWithoutDataModel.xcodeproj │ └── project.pbxproj └── CoreDataWithoutDataModel │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CoreDataExtensions.swift │ ├── CoreDataStack.swift │ ├── Info.plist │ ├── NoteMO.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── CornerRadiusReview ├── CornerRadiusReview.xcodeproj │ └── project.pbxproj └── CornerRadiusReview │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── CountryCode ├── CountryCode.xcodeproj │ └── project.pbxproj └── CountryCode │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── TelephonyManager.swift │ └── ViewController.swift ├── CustomViews ├── .gitignore ├── CustomViews.xcodeproj │ └── project.pbxproj ├── CustomViews │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── keyboard_icon.imageset │ │ │ ├── Contents.json │ │ │ └── keyboard_icon.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Classes │ │ ├── BackgroundDismissAlertController.swift │ │ ├── CopyPastProtectedTextField.swift │ │ ├── CopyableLabel.swift │ │ ├── CursorView.swift │ │ ├── DatePickerTextField.swift │ │ ├── DesignableTextField.swift │ │ ├── DoneToolBar.swift │ │ ├── InsetsLabel.swift │ │ ├── Labels │ │ │ ├── AdaptiveTextHeightLabel.swift │ │ │ ├── AnimatedLabel.swift │ │ │ ├── CountingLabel.swift │ │ │ ├── FadeLabel.swift │ │ │ ├── MultilineLabel.swift │ │ │ ├── SpringLabel.swift │ │ │ └── StyledLabel.swift │ │ ├── NoDelayScrollView.swift │ │ ├── NoDelayTableView.swift │ │ ├── PickerTextField.swift │ │ ├── ResizableCollectionView.swift │ │ ├── ResizableHeaderTableView.swift │ │ ├── ResizableTableView.swift │ │ ├── ResizableTextView.swift │ │ ├── Spinner.swift │ │ ├── SpringButton.swift │ │ ├── StickyHeaderTableView.swift │ │ ├── TextField.swift │ │ └── TimerLabel.swift │ ├── Controllers │ │ ├── AnimatedLabels │ │ │ ├── AnimatedLabels.storyboard │ │ │ └── AnimatedLabelsController.swift │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── PickerController.swift │ │ ├── RainbowTableView │ │ │ ├── Base.lproj │ │ │ │ └── RainbowTableView.storyboard │ │ │ └── RainbowTableViewController.swift │ │ ├── ResizableHeaderTableView │ │ │ ├── Base.lproj │ │ │ │ └── ResizableHeaderTableView.storyboard │ │ │ └── ResizableHeaderTableViewController.swift │ │ └── StickyHeaderTableView │ │ │ ├── Base.lproj │ │ │ └── StickyHeaderTableView.storyboard │ │ │ └── StickyHeaderTableViewController.swift │ ├── Info.plist │ └── UIColor+Adjust.swift └── README.md ├── DIKit ├── DIKit.xcodeproj │ └── project.pbxproj └── DIKit │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── DashView ├── DashView.xcodeproj │ └── project.pbxproj └── DashView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── DataBaseTest ├── DataBaseTest.xcodeproj │ └── project.pbxproj ├── DataBaseTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DataBaseTest.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── DataBaseTest.xcdatamodel │ │ │ └── contents │ ├── Info.plist │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── DataSourceGeneric ├── DataSourceGeneric.xcodeproj │ └── project.pbxproj └── DataSourceGeneric │ ├── AppDelegate.swift │ ├── ArrayDataSource.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DataSourceProxy.swift │ ├── FillableCell.swift │ ├── Info.plist │ ├── SomeCell.swift │ ├── SomeEntity.swift │ └── ViewController.swift ├── DayOfTheProgrammer.playground ├── Contents.swift └── contents.xcplayground ├── DebugOverlay ├── DebugOverlay.xcodeproj │ └── project.pbxproj └── DebugOverlay │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── DebugOverlay.swift │ ├── NSObject+UIDebuggingInformationOverlayInjector.m │ └── ViewController.swift ├── Debugger ├── Debugger.xcodeproj │ └── project.pbxproj └── Debugger │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CallStackParser.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Decodable.playground ├── Contents.swift └── contents.xcplayground ├── DiskSpace ├── DiskSpace.xcodeproj │ └── project.pbxproj └── DiskSpace │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── VolumeStorageCapacity.swift ├── DragDrop ├── DragDrop.xcodeproj │ └── project.pbxproj └── DragDrop │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ImageController.swift │ ├── Info.plist │ ├── PhotoCell.swift │ ├── PhotosController.swift │ ├── Reusable.swift │ ├── UIImage+Init.swift │ └── ViewController.swift ├── DropDownView ├── DropDownView.xcodeproj │ └── project.pbxproj └── DropDownView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DropDownProtocol.swift │ ├── DropDownView.swift │ ├── Info.plist │ └── ViewController.swift ├── DropboxManager ├── DropboxManager.xcodeproj │ └── project.pbxproj ├── DropboxManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DropboxManager.swift │ ├── Info.plist │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── DynamicCell ├── .gitignore ├── DynamicCell.xcodeproj │ └── project.pbxproj └── DynamicCell │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ └── Presentation │ ├── Base.lproj │ └── Main.storyboard │ ├── Extensions │ └── Text+Size.swift │ ├── ManualController.swift │ ├── TableDataSource.swift │ ├── TableViewCell │ ├── TableViewCell.swift │ └── TableViewCell.xib │ └── ViewController.swift ├── DynamicFont ├── DynamicFont.xcodeproj │ └── project.pbxproj └── DynamicFont │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── EmailClient ├── EmailClient.xcodeproj │ └── project.pbxproj ├── EmailClient │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── EmailClient-Bridging-Header.h │ ├── ExceptionCatcher.h │ ├── ExceptionCatcher.m │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── EmailSender ├── EmailSender.xcodeproj │ └── project.pbxproj └── EmailSender │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── EmailSender.swift │ ├── Info.plist │ ├── SMSSender.swift │ ├── UIApplication+Controller.swift │ ├── UIApplication+URL.swift │ └── ViewController.swift ├── Emitter ├── Emitter.xcodeproj │ └── project.pbxproj └── Emitter │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── confetti.imageset │ │ ├── Contents.json │ │ └── confetti.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SAConfettiView.swift │ ├── SnowflakeEmitter.swift │ └── ViewController.swift ├── EmptyIBSwiftProject ├── EmptySwiftProject.xcodeproj │ └── project.pbxproj └── EmptySwiftProject │ ├── AppDelegate.swift │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── Image.imageset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── EmptyProject ├── EmptyProject.xcodeproj │ └── project.pbxproj └── EmptyProject │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ └── Info.plist ├── EmptyProjectSceneDelegate ├── EmptyProject.xcodeproj │ └── project.pbxproj └── EmptyProject │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ └── Info.plist ├── EurekaTest ├── Cartfile ├── Cartfile.resolved ├── EurekaTest.xcodeproj │ └── project.pbxproj └── EurekaTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── EventKitTest ├── EventKitTest.xcodeproj │ └── project.pbxproj └── EventKitTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── FacebookTest ├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── FacebookTest.xcodeproj │ └── project.pbxproj ├── FacebookTest │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── FacebookTest.entitlements │ │ └── Info.plist │ ├── Classes │ │ ├── Facebook+Extension.swift │ │ ├── FacebookManager.swift │ │ ├── FacebookUrls.swift │ │ └── User.swift │ └── Presentation │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ └── ViewController.swift └── README.md ├── FetchedResultsController ├── FetchedResultsController.xcodeproj │ └── project.pbxproj ├── FetchedResultsController │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ ├── Base.lproj │ │ └── Main.storyboard │ ├── CollectionController.swift │ ├── CollectionDataSourceController.swift │ ├── CoreDataCollectionDataSource.swift │ ├── CoreDataStack │ │ ├── CoreDataStack.swift │ │ ├── FetchedResultsController.xcdatamodeld │ │ │ ├── .xccurrentversion │ │ │ └── FetchedResultsController.xcdatamodel │ │ │ │ └── contents │ │ ├── NSManagedObject+Extensions.swift │ │ ├── NSManagedObjectContext+Extensions.swift │ │ └── NSPersistentStoreCoordinator+Extensions.swift │ ├── Date+New.swift │ ├── EventCell.swift │ ├── EventCollectionCell.swift │ ├── EventDB+New.swift │ ├── ExpressionTableController.swift │ ├── TableAZController.swift │ └── TableController.swift └── FetchedResultsControllerTests │ ├── FetchedResultsControllerTests.swift │ └── Info.plist ├── FileManagerReview ├── FileManagerReview.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── FileManagerReview.xcscheme └── FileManagerReview │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DiskSpace.swift │ ├── DispatchIOWrapper.swift │ ├── FileManager+Extension.swift │ ├── FileManagerReview.entitlements │ ├── FilePermissions.swift │ ├── FileSystemItem.swift │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── FirebaseTest ├── FirebaseTest.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── FirebaseTest.xcscheme ├── FirebaseTest │ ├── AnalyticsService.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── FIRDatabaseService.swift │ ├── FirebaseSerivce.swift │ ├── FirestoreService.swift │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── Logger.swift │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── FontForSizes ├── FontForSizes.xcodeproj │ └── project.pbxproj └── FontForSizes │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Fonts.swift │ ├── Info.plist │ └── ViewController.swift ├── FontSelect ├── FontSelect.xcodeproj │ └── project.pbxproj └── FontSelect │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Fonts.swift │ ├── FontsController.swift │ ├── Info.plist │ └── ViewController.swift ├── Formatters ├── Formatters.xcodeproj │ └── project.pbxproj └── Formatters │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── GCD ├── GCD.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── GCD.xcscheme └── GCD │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Benchmark.swift │ ├── CountWhere.swift │ ├── Dispatch+Assert.swift │ ├── DispatchQueue+Main.swift │ ├── Info.plist │ ├── Throttler.swift │ └── ViewController.swift ├── GenericTableViewController ├── GenericTableViewController.xcodeproj │ └── project.pbxproj └── GenericTableViewController │ ├── App.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DetailViewController.swift │ ├── GenericTableViewController.swift │ ├── Info.plist │ ├── Models.swift │ ├── ProfileController.swift │ ├── SeasonCell.swift │ ├── SeasonCell.xib │ ├── UIView+Constrains.swift │ ├── UIViewController+Child.swift │ └── ViewController.swift ├── Google api and geocoder ├── AutoCompleteAddressMaps-master │ ├── .gitignore │ ├── AutoCompleteAddress.xcodeproj │ │ └── project.pbxproj │ ├── AutoCompleteAddress │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── SearchResultsController.swift │ │ └── ViewController.swift │ ├── LICENSE │ ├── Podfile │ └── README.md ├── AutocompleteTextfieldSwift-master │ ├── AutocompleteTextfieldSwift.xcodeproj │ │ └── project.pbxproj │ ├── AutocompleteTextfieldSwift │ │ ├── AutoCompleteTextField │ │ │ └── AutoCompleteTextField.swift │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Controllers │ │ │ ├── AppDelegate.swift │ │ │ └── ViewController.swift │ │ ├── Helpers │ │ │ ├── Location.swift │ │ │ └── MKMapViewExtension.swift │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ └── Info.plist │ ├── AutocompleteTextfieldSwiftTests │ │ ├── AutocompleteTextfieldSwiftTests.swift │ │ └── Info.plist │ ├── LICENSE │ └── README.md ├── Feed Me Finished │ ├── Feed Me.xcodeproj │ │ └── project.pbxproj │ ├── Feed Me │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Controllers │ │ │ ├── MapViewController.swift │ │ │ └── TypesTableViewController.swift │ │ ├── Feed Me-Bridging-Header.h │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ │ ├── bakery.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bakery@2x.png │ │ │ ├── bakery_pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bakery_pin@2x.png │ │ │ ├── bar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bar@2x.png │ │ │ ├── bar_pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bar_pin@2x.png │ │ │ ├── cafe.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cafe@2x.png │ │ │ ├── cafe_pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cafe_pin@2x.png │ │ │ ├── coffee.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── coffee@2x.png │ │ │ ├── driving.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── driving@2x.png │ │ │ ├── driving_pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── driving@2x.png │ │ │ ├── filter.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── filter@2x.png │ │ │ ├── generic.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── generic@2x.png │ │ │ ├── grocery_or_supermarket.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── grocery_or_supermarket@2x.png │ │ │ ├── grocery_or_supermarket_pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── grocery_or_supermarket_pin@2x.png │ │ │ ├── icon_me.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_me@2x.png │ │ │ ├── restaurant.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── restaurant@2x.png │ │ │ ├── restaurant_pin.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── restaurant_pin@2x.png │ │ │ └── walking.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── walking@2x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Model │ │ │ ├── GoogleDataProvider.swift │ │ │ ├── GooglePlace.swift │ │ │ └── PlaceMarker.swift │ │ └── Views │ │ │ ├── MarkerInfoView.swift │ │ │ ├── MarkerInfoView.xib │ │ │ └── UIViewExtension.swift │ ├── Feed MeTests │ │ ├── Feed_MeTests.swift │ │ └── Info.plist │ ├── Podfile │ └── Podfile.lock ├── GoogleMapsTest │ ├── GoogleMapsTest.xcodeproj │ │ └── project.pbxproj │ ├── GoogleMapsTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── Podfile │ └── Podfile.lock ├── GooglePlaces │ ├── .gitignore │ ├── GooglePlaces.xcodeproj │ │ └── project.pbxproj │ ├── GooglePlaces │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── PlacesController.swift │ │ └── ViewController.swift │ ├── Podfile │ └── Podfile.lock ├── Swift-lesson4-master │ ├── Podfile │ ├── Podfile.lock │ ├── README.md │ ├── SwiftMapRequest.xcodeproj │ │ └── project.pbxproj │ └── SwiftMapRequest │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Attraction.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── City.swift │ │ ├── Helper.swift │ │ ├── HttpController.swift │ │ ├── Info.plist │ │ ├── JSONReader.swift │ │ ├── LocationSearchTable.swift │ │ ├── Protocols.swift │ │ ├── RealmManagement.swift │ │ ├── Structures.swift │ │ └── ViewController.swift ├── geocoder.txt └── ios_google_places_autocomplete-master │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── GooglePlacesAutocomplete.podspec │ ├── GooglePlacesAutocomplete.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── GooglePlacesAutocomplete.xcscheme │ ├── GooglePlacesAutocomplete │ ├── GooglePlacesAutocomplete.h │ ├── GooglePlacesAutocomplete.swift │ ├── GooglePlacesAutocomplete.xib │ ├── Images.xcassets │ │ └── PoweredByGoogle.imageset │ │ │ ├── Contents.json │ │ │ ├── powered-by-google-on-white.png │ │ │ └── powered-by-google-on-white@2x.png │ └── Info.plist │ ├── GooglePlacesAutocompleteExample │ ├── GooglePlacesAutocompleteExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── GooglePlacesAutocompleteExample.xcscheme │ ├── GooglePlacesAutocompleteExample │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ └── GooglePlacesAutocompleteExampleTests │ │ ├── GooglePlaceDetailsRequestTests.swift │ │ ├── GooglePlacesAutocompleteExample-Bridging-Header.h │ │ ├── GooglePlacesAutocompleteExampleTests.swift │ │ ├── Info.plist │ │ ├── LocationBiasRequestTests.swift │ │ └── ReferenceImages_64 │ │ └── GooglePlacesAutocompleteExampleTests.GooglePlacesAutocompleteTests │ │ ├── testGooglePlacesAutocomplete_search@2x.png │ │ └── testGooglePlacesAutocomplete_view@2x.png │ ├── GooglePlacesAutocompleteTests │ └── Info.plist │ ├── LICENSE │ ├── Podfile │ ├── Podfile.lock │ ├── README.md │ ├── Rakefile │ └── Screenshots │ ├── search.png │ ├── style.png │ └── view.png ├── GradientsReview ├── GradientsReview.xcodeproj │ └── project.pbxproj └── GradientsReview │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── GradientView.swift │ ├── GradientsReview.xcdatamodeld │ ├── .xccurrentversion │ └── GradientsReview.xcdatamodel │ │ └── contents │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── ImageDownloadsKingfisherSDWebImage ├── .gitignore ├── ImageDownloads.xcodeproj │ └── project.pbxproj ├── ImageDownloads │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ └── Presentation │ │ ├── ActivityPlaceholder.swift │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── ImageCell.swift │ │ ├── SDWebImageController.swift │ │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── ImageFormat ├── .gitignore ├── ImageFormat.xcodeproj │ └── project.pbxproj ├── ImageFormat │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ ├── Base.lproj │ │ └── Main.storyboard │ ├── ImageFormat.swift │ ├── Test images │ │ ├── 1.jpg │ │ ├── 2.png │ │ ├── 3.gif │ │ ├── 4.svg │ │ ├── 5.TIF │ │ ├── 6.webp │ │ └── 7.HEIC │ ├── UIImage+HEIC.swift │ └── ViewController.swift └── README.md ├── ImageOperationsManager ├── ImageOperationsManager.xcodeproj │ └── project.pbxproj └── ImageOperationsManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CacheManager.swift │ ├── ImageOperationsManager.swift │ ├── Info.plist │ ├── ViewController.swift │ └── photos.json ├── ImagesLocal ├── .gitignore ├── Images.xcodeproj │ └── project.pbxproj └── Images │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Presentation │ ├── AlbumsDataSource.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── BaseNavigationController.swift │ ├── DetailTableViewCell.swift │ ├── ImageScrollView.swift │ ├── LibraryController.swift │ ├── LocalPhotosController.swift │ ├── PhotoCell.swift │ ├── PhotoViewerController.swift │ └── ViewController.swift │ └── Support │ ├── Classes │ ├── AccessStatus.swift │ ├── Device.swift │ ├── FormattersTest.swift │ ├── ImageManager.swift │ ├── ImageMetadata.swift │ ├── ImagePicker │ │ ├── ImagePicker.swift │ │ ├── ImagePickerSettings.swift │ │ └── ImagePickerType.swift │ ├── LocationRequest.swift │ ├── PermissionsManager.swift │ ├── PhotoManager │ │ ├── PhotoManager.swift │ │ └── PhotoManagerDelegate.swift │ ├── ResponseResult.swift │ └── SettingsRouter.swift │ ├── CustomErrors.swift │ ├── Extensions │ ├── Color │ │ ├── UIButton+Color.swift │ │ ├── UIColor+Adjust.swift │ │ └── UIImage+Color.swift │ ├── Data+Size.swift │ ├── PHAsset+Fetch.swift │ ├── PHAsset+Info.swift │ ├── PHAsset+Properties.swift │ ├── UICollectionView+Extensions.swift │ ├── UIImage+Orientation.swift │ ├── UINavigationController+Bugs.swift │ ├── UITableView+Extensions.swift │ └── UTType+FileExtension.swift │ └── Сustomizable.swift ├── ImagesObjc ├── ImagesObjc.xcodeproj │ └── project.pbxproj └── ImagesObjc │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── PhotoCell.h │ ├── PhotoCell.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── ImagesSwift ├── ImagesSwift.xcodeproj │ └── project.pbxproj └── ImagesSwift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ └── ViewController.swift ├── InfoPlistSecure ├── InfoPlistSecure.xcodeproj │ └── project.pbxproj ├── InfoPlistSecure │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.swift │ └── main.swift └── Some1 │ ├── Info.plist │ └── Some1.h ├── InitSwift.playground ├── Contents.swift └── contents.xcplayground ├── InjectionTest ├── .gitignore ├── InjectionTest.xcodeproj │ └── project.pbxproj ├── InjectionTest │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ └── main.m │ ├── Extensions │ │ └── Injection+Controllers.swift │ └── Presentation │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ └── ViewController.swift └── README.md ├── InputView ├── InputView.xcodeproj │ └── project.pbxproj └── InputView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DatePickerView.swift │ ├── Info.plist │ ├── InputView.swift │ ├── KeyboardInputView.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── JailbreakChecker ├── .gitignore ├── JailbreakChecker.xcodeproj │ └── project.pbxproj └── JailbreakChecker │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── JailbreakChecker.swift │ └── ViewController.swift ├── JsonDecoding ├── JsonDecoding.xcodeproj │ └── project.pbxproj └── JsonDecoding │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Resources │ ├── productDetails.json │ ├── products.json │ └── productsNotGood.json │ ├── SceneDelegate.swift │ └── ViewController.swift ├── KeyboardHideManager ├── .gitignore ├── .swift-version ├── CHANGELOG.md ├── Example │ ├── KeyboardHideManagerExample.xcodeproj │ │ └── project.pbxproj │ └── KeyboardHideManagerExample │ │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ │ └── Presentation │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── KeyboardLayoutConstraint.swift │ │ └── ViewController.swift ├── KeyboardHideManager.podspec ├── KeyboardHideManager.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── KeyboardHideManager.xcscheme ├── KeyboardHideManager │ └── KeyboardHideManager.swift ├── KeyboardHideManagerTests │ └── KeyboardHideManagerTests.swift ├── LICENSE.md ├── README.md ├── Resources │ ├── kdpv.png │ ├── keyboard_icon.png │ ├── object.png │ ├── preview.png │ ├── usage_1.png │ ├── usage_2.png │ ├── usage_3.png │ └── user_iteraction_enabled.png ├── Settings │ ├── Info.plist │ └── KeyboardHideManager.h └── SettingsTests │ └── Info.plist ├── KeyboardMultiWindow ├── KeyboardMultiWindow.xcodeproj │ └── project.pbxproj └── KeyboardMultiWindow │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── KeyboardStateListener ├── KeyboardStateListener.xcodeproj │ └── project.pbxproj └── KeyboardStateListener │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Extensions.swift │ ├── Info.plist │ ├── KeyboardLayoutConstraint.swift │ ├── KeyboardScrollController.swift │ ├── KeyboardStateListener.swift │ └── ViewController.swift ├── KeychainManager ├── KeychainManager.xcodeproj │ └── project.pbxproj └── KeychainManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── KeychainManager.entitlements │ ├── SceneDelegate.swift │ └── ViewController.swift ├── LanguageProcessor ├── LanguageProcessor.xcodeproj │ └── project.pbxproj └── LanguageProcessor │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── LanguageProcessor.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── LightControllers ├── .gitignore ├── LightControllers.xcodeproj │ └── project.pbxproj └── LightControllers │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── KeyboardHandler.swift │ ├── KeyboardScrollController.swift │ ├── KeyboardViewController.swift │ ├── NextTextField.swift │ └── ViewController.swift ├── LocalizationInspectable ├── .gitignore ├── LocalizationInspectable.xcodeproj │ └── project.pbxproj └── LocalizationInspectable │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Localizable.strings │ ├── Info.plist │ └── ru.lproj │ │ └── Localizable.strings │ ├── Extensions │ └── Localization+Views.swift │ └── Presentation │ ├── Base.lproj │ └── Main.storyboard │ └── ViewController.swift ├── LocalizationManager ├── .gitignore ├── LocalizationManager.xcodeproj │ └── project.pbxproj └── LocalizationManager │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ └── arrow.imageset │ │ │ ├── Contents.json │ │ │ └── arrow.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Localizable.strings │ ├── Info.plist │ ├── MainApplication.swift │ ├── en.lproj │ │ ├── Localizable.strings │ │ └── flag.png │ ├── he.lproj │ │ ├── Localizable.strings │ │ └── flag.png │ ├── main.swift │ └── ru.lproj │ │ ├── Localizable.strings │ │ └── flag.png │ └── Presentation │ ├── Base.lproj │ └── Main.storyboard │ ├── BaseNavController.swift │ ├── Classes │ ├── AppearanceConfigurator.swift │ ├── LanguageManager.swift │ ├── LocalizationManager.swift │ └── MulticastDelegate.swift │ ├── Extensions │ ├── Localization+Views.swift │ ├── String+LocalizationManager.swift │ ├── UIApplication+Restart.swift │ ├── UIImage+RTL.swift │ └── UIViewController+IBAction.swift │ └── ViewController.swift ├── LocationManager ├── LocationManager.xcodeproj │ └── project.pbxproj └── LocationManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── LocationManager.swift │ └── ViewController.swift ├── Logger ├── .gitignore ├── Logger.xcodeproj │ └── project.pbxproj └── Logger │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Logger │ ├── AlamofireLogger.swift │ ├── Dispatch+Current.swift │ ├── Logger+Realm.swift │ ├── Logger.swift │ └── NetworkActivityLogger.swift │ └── ViewController.swift ├── LottieTest ├── LottieTest.xcodeproj │ └── project.pbxproj └── LottieTest │ ├── Animations │ └── fishes_lottie.json │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── MVC ├── .gitignore ├── MVC.xcodeproj │ └── project.pbxproj └── MVC │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── BaseViewController.swift │ └── Info.plist │ ├── Controller │ ├── LoginModelController.swift │ └── LoginViewController.swift │ ├── Model │ └── LoginCredentials.swift │ └── View │ ├── LoginView.swift │ ├── LoginView.xib │ └── LoginViewDelegate.swift ├── MagnifyView ├── MagnifyView.xcodeproj │ └── project.pbxproj └── MagnifyView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── MagnifyView.swift │ └── ViewController.swift ├── MainQueue ├── .gitignore ├── MainQueue.xcodeproj │ └── project.pbxproj └── MainQueue │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── DispatchQueue+Main.swift │ └── ViewController.swift ├── MainThreadGuard ├── MainThreadGuard.xcodeproj │ └── project.pbxproj └── MainThreadGuard │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── MainThreadGuard.swift │ └── ViewController.swift ├── MapKitTest ├── MapKitTest.xcodeproj │ └── project.pbxproj └── MapKitTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── gps.imageset │ │ ├── Contents.json │ │ └── gps.png │ └── rec.imageset │ │ ├── Contents.json │ │ └── rec.png │ ├── AutocompleteManager.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── MapSearchController.swift │ ├── MapViewManager.swift │ ├── PlacesController.swift │ └── ViewController.swift ├── MemoryLayout.playground ├── Contents.swift └── contents.xcplayground ├── MemoryTests ├── MemoryTests.xcodeproj │ └── project.pbxproj └── MemoryTests │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ └── ViewController.swift ├── MenuDouble(Transitions iOS 10) ├── MenuDouble.xcodeproj │ └── project.pbxproj └── MenuDouble │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Controllers.swift │ ├── Info.plist │ ├── InteractionController.swift │ ├── PushAnimator.swift │ ├── SetMenuSegue.swift │ ├── TransitioningDelegate.swift │ ├── UIView+Constrains.swift │ ├── UIViewController+Child.swift │ ├── UIViewController+MenuDouble.swift │ └── ViewController.swift ├── MenuDouble(Transitions) ├── MenuDouble.xcodeproj │ └── project.pbxproj └── MenuDouble │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Controllers.swift │ ├── Info.plist │ ├── InteractionController.swift │ ├── PushAnimator.swift │ ├── SetMenuSegue.swift │ ├── TransitioningDelegate.swift │ ├── UIView+Constrains.swift │ ├── UIViewController+Child.swift │ ├── UIViewController+MenuDouble.swift │ └── ViewController.swift ├── MenuDouble3 ├── MenuDouble3.xcodeproj │ └── project.pbxproj └── MenuDouble3 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Controllers.swift │ ├── Info.plist │ ├── MenuDoubleController.swift │ ├── MenuPanGesture.swift │ ├── MulticastDelegate.swift │ ├── SetMenuSegue.swift │ ├── UIView+Constrains.swift │ ├── UIView+Parent.swift │ ├── UIViewController+Child.swift │ └── UIViewController+MenuDouble.swift ├── MetalTest ├── MetalTest.xcodeproj │ └── project.pbxproj └── MetalTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Shaders.metal │ └── ViewController.swift ├── MotionActivityManager ├── MotionActivityManager.xcodeproj │ └── project.pbxproj └── MotionActivityManager │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── BackgroundTaskManager.swift │ ├── Base.lproj │ └── Main.storyboard │ ├── CMMotionActivity+Extensions.swift │ ├── EmailSender │ ├── EmailSender.swift │ └── UIApplication+URL.swift │ ├── Logger │ ├── Dispatch+Current.swift │ ├── Logger.swift │ └── Watchdog.swift │ ├── MotionActivityManager.swift │ └── ViewController.swift ├── MotionEffectReview ├── MotionEffectReview.xcodeproj │ └── project.pbxproj └── MotionEffectReview │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── galaxy4.imageset │ │ ├── Contents.json │ │ └── galaxy4.jpg │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── NaturalLanguageQuotes ├── NaturalLanguageQuotes.xcodeproj │ └── project.pbxproj └── NaturalLanguageQuotes │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── NavigationBasic ├── NavigationBasic.xcodeproj │ └── project.pbxproj └── NavigationBasic │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Navigation+Extension.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── NavigationPopup ├── NavigationPopup.xcodeproj │ └── project.pbxproj └── NavigationPopup │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ └── Info.plist ├── NextTextField ├── .gitignore ├── NextTextField.xcodeproj │ └── project.pbxproj └── NextTextField │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Presentation │ ├── Base.lproj │ │ └── Main.storyboard │ ├── NextTextField.swift │ └── ViewController.swift │ └── Support │ ├── KeyboardHideManager.swift │ └── KeyboardLayoutConstraint.swift ├── NoBreakWordWrap ├── NoBreakWordWrap.xcodeproj │ └── project.pbxproj └── NoBreakWordWrap │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Localizable.strings │ └── ViewController.swift ├── Notes ├── Notes.xcodeproj │ └── project.pbxproj └── Notes │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DetailViewController.swift │ ├── Info.plist │ ├── MasterViewController.swift │ ├── Notes.entitlements │ ├── Notes.xcdatamodeld │ ├── .xccurrentversion │ └── Notes.xcdatamodel │ │ └── contents │ └── SceneDelegate.swift ├── NotificationBanner ├── NotificationBanner.xcodeproj │ └── project.pbxproj └── NotificationBanner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NotificationBanner │ ├── NotificationBanner.swift │ ├── NotificationBannerController.swift │ └── NotificationBannerController.xib │ └── ViewController.swift ├── NotificationCenterTest ├── NotificationCenterTest.xcodeproj │ └── project.pbxproj └── NotificationCenterTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── NotificationPush ├── NotificationPush.xcodeproj │ └── project.pbxproj └── NotificationPush │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Notifications10Badge ├── Notifications10.xcodeproj │ └── project.pbxproj └── Notifications10 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NotificationManager.swift │ ├── Notifications10.entitlements │ └── ViewController.swift ├── NotificationsLocalActionsOld ├── NotificationsLocalActions.xcodeproj │ └── project.pbxproj └── NotificationsLocalActions │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── NotificationsUserLocal ├── ContentExtension │ ├── Base.lproj │ │ └── MainInterface.storyboard │ ├── Info.plist │ └── NotificationViewController.swift ├── UserLocalNotification.xcodeproj │ └── project.pbxproj └── UserLocalNotification │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Resources │ ├── dance.gif │ ├── dance1.jpg │ ├── dance2.jpg │ ├── dance3.jpg │ └── play.m4a │ ├── UserNotificationManager.swift │ └── ViewController.swift ├── OCRManager ├── OCRManager.xcodeproj │ └── project.pbxproj └── OCRManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CameraManager.swift │ ├── DocumentScanner.swift │ ├── Info.plist │ ├── OCRManager.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── OpenStreetMapTest ├── OpenStreetMapTest.xcodeproj │ └── project.pbxproj └── OpenStreetMapTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── OptIn ├── OptIn.xcodeproj │ └── project.pbxproj └── OptIn │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── OptInController │ ├── Classes │ │ ├── CountdownTimer.swift │ │ ├── InMemoryAttemptsCounter.swift │ │ ├── SavingInUserDefaultsAttemptsCounterForUniqueID.swift │ │ ├── StorageAttemptsCounter.swift │ │ ├── TimerWrapper.swift │ │ ├── UI │ │ │ ├── CodeTextField.swift │ │ │ └── KeyboardLayoutConstraint.swift │ │ └── UserDefaultsForUniqueID.swift │ ├── Extensions │ │ ├── MonospacedDigitFontExtensions.swift │ │ └── UserDefaults+Init.swift │ ├── OptInController.swift │ ├── OptInController.xib │ └── Protocols │ │ ├── AnyStorage.swift │ │ ├── AttemptsCounter.swift │ │ └── KeyboardDismissable.swift │ └── ViewController.swift ├── Optionals ├── Optionals.xcodeproj │ └── project.pbxproj ├── Optionals │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Optional+Extensions.swift │ └── ViewController.swift └── OptionalsTests │ ├── Info.plist │ └── OptionalsTests.swift ├── OrientationManager ├── .gitignore ├── LandscapeOneController.xcodeproj │ └── project.pbxproj ├── LandscapeOneController │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── LandscapeController.swift │ ├── OrientationManager.swift │ └── ViewController.swift └── README.md ├── Passcode ├── Passcode.xcodeproj │ └── project.pbxproj └── Passcode │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Classes │ ├── FromNib.swift │ ├── PasscodeInputView.swift │ ├── PasscodeInputViewType.swift │ ├── PasscodeState.swift │ ├── PasscodeStorage.swift │ ├── PasscodeView.swift │ └── PasscodeView.xib │ ├── Info.plist │ ├── PasscodeController.swift │ ├── PasscodeManager.swift │ └── VC.swift ├── PasswordAutoFill ├── PasswordAutoFill.xcodeproj │ └── project.pbxproj └── PasswordAutoFill │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── PasteboardHandler ├── PasteboardHandler.xcodeproj │ └── project.pbxproj └── PasteboardHandler │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── PerformanceManager ├── PerformanceManager.xcodeproj │ └── project.pbxproj └── PerformanceManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── PerformanceManager.swift │ └── ViewController.swift ├── PerformanceTests ├── PerformanceTests.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── PerformanceTests.xcscheme ├── PerformanceTests │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── PerformanceTestsTests │ ├── ClassVsStruct.swift │ ├── Info.plist │ └── NSStringTests.swift ├── PresentDismissVC ├── PresentVC.xcodeproj │ └── project.pbxproj └── PresentVC │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── ProductsList ├── ProductsList.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ProductsList.xcscheme ├── ProductsList │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Images.swift │ │ ├── Info.plist │ │ ├── L10n.swift │ │ ├── ProductsList.entitlements │ │ ├── ProductsList.xcdatamodeld │ │ │ └── ProductsList.xcdatamodel │ │ │ │ └── contents │ │ ├── SceneDelegate.swift │ │ ├── en.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── ru.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ └── todo.swift │ ├── Helpers │ │ ├── Extensions │ │ │ ├── Alamofire+Custom.swift │ │ │ ├── Alamofire+Extensions.swift │ │ │ ├── Extensions.swift │ │ │ └── UICollectionView+Extensions.swift │ │ ├── KeyboardStateListener.swift │ │ └── Protocols │ │ │ ├── ClassNameable.swift │ │ │ ├── ErrorPresenter.swift │ │ │ ├── NibInitiable.swift │ │ │ └── Stylable.swift │ ├── Logic │ │ ├── CoreDataStack.swift │ │ ├── Product.swift │ │ ├── ProductItemDB+Extension.swift │ │ └── URLs.swift │ └── UI │ │ ├── Cells │ │ └── ImageTextCell │ │ │ ├── ImageTextCell.swift │ │ │ └── ImageTextCell.xib │ │ ├── Controllers │ │ ├── ProductDetailController │ │ │ ├── ProductDetailController.swift │ │ │ ├── ProductDetailController.xib │ │ │ └── ProductDetailView.swift │ │ ├── ProductsListController │ │ │ ├── ProductsListController+DataSource.swift │ │ │ ├── ProductsListController+Interactor.swift │ │ │ ├── ProductsListController+View.swift │ │ │ └── ProductsListController.swift │ │ └── SearchController.swift │ │ └── Views │ │ ├── ScaledHeightImageView.swift │ │ └── TitleSupplementaryView.swift ├── ProductsListTests │ ├── Info.plist │ ├── ProductsListTests.swift │ └── XCTestCase+Deallocation.swift ├── ProductsListUITests │ ├── Info.plist │ ├── ProductsListUITests.swift │ └── XCUIElement+Helpers.swift └── Scripts │ ├── .swiftlint.yml │ ├── SwiftGenTemplates │ ├── images_swift4.stencil │ └── strings_structured-swift4.stencil │ ├── swiftgen_images.sh │ ├── swiftgen_strings.sh │ ├── swiftlint.sh │ └── unused.rb ├── ProgressSlider ├── ProgressSlider.xcodeproj │ └── project.pbxproj └── ProgressSlider │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── slider_thumb.imageset │ │ ├── Contents.json │ │ └── slider_thumb.pdf │ └── slider_thumb_big.imageset │ │ ├── Contents.json │ │ └── slider_thumb_big.pdf │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── ProximitySensor ├── ProximitySensor.xcodeproj │ └── project.pbxproj └── ProximitySensor │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── PullToRefreshTest ├── .gitignore ├── Podfile ├── Podfile.lock ├── PullToRefreshTest.xcodeproj │ └── project.pbxproj └── PullToRefreshTest │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── InfiniteController~.storyboard │ ├── Classes │ └── AssociationManager.swift │ ├── Extension │ ├── UIScrollView+Offest.swift │ └── UIScrollView+Refresh.swift │ └── Presentation │ ├── Base.lproj │ └── Main.storyboard │ ├── ESController │ ├── Animator │ │ ├── Base.lproj │ │ │ └── Localizable.strings │ │ ├── ESRefreshFooterAnimator.swift │ │ ├── ESRefreshHeaderAnimator.swift │ │ ├── icon_pull_to_refresh_arrow@2x.png │ │ ├── zh-Hans.lproj │ │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ │ └── Localizable.strings │ ├── Base.lproj │ │ └── ESController.storyboard │ └── ESController.swift │ ├── ICSController │ ├── Base.lproj │ │ └── ICSController.storyboard │ └── ICSController.swift │ ├── InfiniteController │ ├── Base.lproj │ │ └── InfiniteController.storyboard │ └── InfiniteController.swift │ ├── PullToRefreshKit │ ├── Base.lproj │ │ └── PullToRefreshKit.storyboard │ └── PullToRefreshKitController.swift │ ├── TableDataSource.swift │ ├── TableVC │ ├── TableVC.storyboard │ └── TableViewController.swift │ ├── VC │ ├── Base.lproj │ │ └── VC.storyboard │ └── ViewController.swift │ └── YalantisController │ ├── YalantisController.storyboard │ └── YalantisController.swift ├── QRScanner ├── Podfile ├── Podfile.lock ├── QRScanner.xcodeproj │ └── project.pbxproj └── QRScanner │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── CodeImage │ ├── CodeDetector.swift │ ├── CodeGenerator.swift │ ├── ImageController.swift │ └── TorchManager.swift │ ├── QRScanner │ ├── CodeCameraScanner.swift │ ├── QRScanner.swift │ ├── UIDevice+Orientation.swift │ └── ViewController.swift │ └── UIImage+Orientation.swift ├── RaisedTabBar ├── RaisedTabBar.xcodeproj │ └── project.pbxproj └── RaisedTabBar │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── RaisedTabBarController.swift │ ├── SceneDelegate.swift │ ├── TabBarController.swift │ └── ViewController.swift ├── Reachability ├── Podfile ├── Podfile.lock ├── Reachability.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Reachability.xcscheme └── Reachability │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── InternetSpeed.swift │ ├── NetworkReachability.swift │ ├── Reachability-Bridging-Header.h │ ├── TelephonyNetwork.swift │ └── ViewController.swift ├── RealmInvalidGuardStorage ├── .gitignore ├── Podfile ├── Podfile.lock ├── RealmInvalidGuardStorage.xcodeproj │ └── project.pbxproj └── RealmInvalidGuardStorage │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Event.swift │ ├── EventService.swift │ ├── Info.plist │ ├── RealmInvalidGuardStorage.swift │ └── ViewController.swift ├── RealmTests ├── RealmTests.xcodeproj │ └── project.pbxproj └── RealmTests │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── ResizableHeaderTableView ├── ResizableHeaderTableView.xcodeproj │ └── project.pbxproj └── ResizableHeaderTableView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── HeaderView.swift │ ├── Info.plist │ ├── ResizableHeaderTableView.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── ResponderChain ├── ResponderChain.xcodeproj │ └── project.pbxproj └── ResponderChain │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── RestRealmProtocols ├── Networking.xcodeproj │ └── project.pbxproj ├── Networking │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── some_photo.imageset │ │ │ ├── 600px-Soviet_Znamya_Pobedy.svg.png │ │ │ └── Contents.json │ ├── AuthorizationAdapter.swift │ ├── AuthorizationToken.swift │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DataBaseProvider.swift │ ├── DefaultRouter.swift │ ├── Entity.swift │ ├── Info.plist │ ├── MappableRealmObject.swift │ ├── NetworkingProvider.swift │ ├── NetworkingService.swift │ ├── Post.swift │ ├── PostRealm.swift │ ├── PostsListController.swift │ ├── Promise+Catch.swift │ ├── Realm+Array.swift │ ├── RealmProtocols.swift │ ├── RealmProvider.swift │ ├── RestProtocols.swift │ ├── Router.swift │ ├── Token.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── build │ └── Pods.build │ └── Release-iphoneos │ ├── Alamofire.build │ └── dgph │ └── Pods-Networking.build │ └── dgph ├── Router ├── Router.xcodeproj │ └── project.pbxproj └── Router │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Controllers.swift │ ├── Factory.swift │ ├── Info.plist │ └── Router.swift ├── RunLoop ├── RunLoop.xcodeproj │ └── project.pbxproj └── RunLoop │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── RxSwiftStart ├── Podfile ├── Podfile.lock ├── RxSwiftStart.xcodeproj │ └── project.pbxproj └── RxSwiftStart │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── SamsungTV ├── Podfile ├── Podfile.lock ├── SamsungTV.xcodeproj │ └── project.pbxproj └── SamsungTV │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── ScriptsTest ├── .gitignore ├── .iblinter.yml ├── .swiftlint.yml ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock ├── Scripts │ ├── AbandonedStrings │ ├── README.txt │ ├── abandoned_strings.sh │ ├── alias.sh │ ├── carthage.sh │ ├── constraintClean │ ├── constraintClean.sh │ ├── ibanalyzer.sh │ ├── iblinter.sh │ ├── localization_check │ ├── localization_check.sh │ ├── pngcrush.sh │ ├── pngcrush_result.txt │ ├── swiftgen.sh │ ├── swiftlint.sh │ └── unused.rb ├── ScriptsTest.xcodeproj │ └── project.pbxproj ├── ScriptsTest │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ └── Info.plist │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── dot.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── dot.png │ │ ├── L10n.swift │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ └── ru.lproj │ │ │ └── Localizable.strings │ ├── SomeController.storyboard │ ├── SomeController.swift │ └── ViewController.swift └── install ├── ScrollBar ├── ScrollBar.xcodeproj │ └── project.pbxproj └── ScrollBar │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── scroll_bar_view.imageset │ │ │ ├── Contents.json │ │ │ ├── group15.png │ │ │ ├── group15@2x.png │ │ │ └── group15@3x.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── CollectionController.swift │ ├── ScrollBar.swift │ ├── ScrollBarEazy.swift │ ├── ScrollBarView.swift │ ├── TextInsetsLabel.swift │ ├── ViewController.swift │ ├── YearMonth.swift │ ├── YearsSectionIndex.swift │ └── YearsView.swift ├── SegmentedColControl ├── SegmentedColControl.xcodeproj │ └── project.pbxproj └── SegmentedColControl │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── flat_gray.imageset │ │ ├── Contents.json │ │ ├── iconmoodnormal_disable.png │ │ ├── iconmoodnormal_disable@2x.png │ │ └── iconmoodnormal_disable@3x.png │ ├── flat_white.imageset │ │ ├── Contents.json │ │ ├── iconmoodnormal_enable.png │ │ ├── iconmoodnormal_enable@2x.png │ │ └── iconmoodnormal_enable@3x.png │ ├── happy_gray.imageset │ │ ├── Contents.json │ │ ├── iconmoodhappy_disable.png │ │ ├── iconmoodhappy_disable@2x.png │ │ └── iconmoodhappy_disable@3x.png │ ├── happy_white.imageset │ │ ├── Contents.json │ │ ├── iconmoodhappy_enable.png │ │ ├── iconmoodhappy_enable@2x.png │ │ └── iconmoodhappy_enable@3x.png │ ├── sad_gray.imageset │ │ ├── Contents.json │ │ ├── iconmoodsad_disable.png │ │ ├── iconmoodsad_disable@2x.png │ │ └── iconmoodsad_disable@3x.png │ └── sad_white.imageset │ │ ├── Contents.json │ │ ├── iconmoodsad_enable.png │ │ ├── iconmoodsad_enable@2x.png │ │ └── iconmoodsad_enable@3x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ColumnsCollectionLayout.swift │ ├── Enums.swift │ ├── ImageCell.swift │ ├── Info.plist │ ├── SegmentedColControl.swift │ ├── SelectingView.swift │ └── ViewController.swift ├── SegmentedController ├── SegmentedController.xcodeproj │ └── project.pbxproj └── SegmentedController │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── checkmark_fill.imageset │ │ ├── Contents.json │ │ └── checkmark_fill.pdf │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── PhotoCell.swift │ ├── PhotoSelectionController.swift │ ├── PhotoService.swift │ ├── SegmentedController.swift │ ├── TransparentGradientView.swift │ └── photos.json ├── SegueActionReview ├── SegueActionReview.xcodeproj │ └── project.pbxproj └── SegueActionReview │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── TextController~.storyboard │ ├── Info.plist │ ├── Main │ ├── Base.lproj │ │ ├── BasicSwiftUI~.storyboard │ │ └── Main.storyboard │ ├── OldStyle.storyboard │ ├── OldStyle.swift │ ├── SegueActionReview │ │ └── Main │ │ │ └── Base.lproj │ │ │ └── BasicSwiftUI.storyboard │ ├── StoryboardInitable.swift │ ├── SwiftUIView.swift │ ├── TableController.swift │ ├── UIViewController+.swift │ └── ViewController.swift │ ├── SceneDelegate.swift │ ├── TextController │ ├── !TextController.xib │ ├── SegueActionReview │ │ └── Base.lproj │ │ │ └── TextController.storyboard │ └── TextController.swift │ └── TextNibController │ ├── NavBarTextNibController.storyboard │ ├── SegueActionReview │ └── Base.lproj │ │ └── TextNibController.storyboard │ ├── TextNibController.swift │ └── TextNibController.xib ├── Settings ├── .swiftlint.yml ├── Scripts │ ├── SwiftGenTemplates │ │ ├── images_swift4.stencil │ │ └── strings_structured-swift3.stencil │ ├── swiftgen_images.sh │ ├── swiftgen_strings.sh │ └── swiftlint.sh ├── Settings.xcodeproj │ └── project.pbxproj ├── Settings │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── ic_settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── settings.pdf │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Constants.swift │ │ ├── Images.swift │ │ ├── Info.plist │ │ ├── L10n.swift │ │ ├── MainApplication.swift │ │ ├── NonL10n.swift │ │ ├── NotificationNames.swift │ │ ├── Settings.bundle │ │ │ ├── Root.plist │ │ │ ├── en.lproj │ │ │ │ └── Root.strings │ │ │ └── ru.lproj │ │ │ │ └── Root.strings │ │ ├── ShortcutManager.swift │ │ ├── ar.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── he.lproj │ │ │ └── Localizable.strings │ │ ├── main.swift │ │ └── ru.lproj │ │ │ └── Localizable.strings │ ├── AppearanceConfigurator │ │ ├── AppearanceConfigurator.swift │ │ ├── UISearchBar+Properties.swift │ │ └── UITextField+Properties.swift │ ├── Classes │ │ ├── DeveloperAppsManager.swift │ │ ├── Device.swift │ │ ├── EmailSender │ │ │ ├── EmailSender.swift │ │ │ └── UIApplication+URL.swift │ │ ├── LanguageManager.swift │ │ ├── LocalizationManager.swift │ │ ├── Logger │ │ │ ├── Dispatch+Current.swift │ │ │ ├── Logger.swift │ │ │ └── Watchdog.swift │ │ ├── MulticastDelegate.swift │ │ ├── QRCodeGenerator.swift │ │ ├── RateAppManager.swift │ │ ├── RateCounter.swift │ │ ├── SettingsBundleManager.swift │ │ ├── SettingsStorage.swift │ │ └── VibrationManager.swift │ ├── Controllers │ │ ├── AboutController.swift │ │ ├── AppearanceSelectController.swift │ │ ├── BaseNavController.swift │ │ ├── BaseSplitController.swift │ │ ├── DeveloperAppsController.swift │ │ ├── LanguageSelectController.swift │ │ ├── PrivacyPolicyController.swift │ │ ├── SettingsController.swift │ │ ├── ShareOptionsController.swift │ │ ├── SplitDetailController.swift │ │ ├── TabBarController.swift │ │ └── ViewController.swift │ ├── Extensions │ │ ├── CIImage+UIImage.swift │ │ ├── Localization+Views.swift │ │ ├── String+LocalizationManager.swift │ │ ├── Text+Size.swift │ │ ├── UIApplication+Version.swift │ │ ├── UIColor+Default.swift │ │ ├── UIImage+RTL.swift │ │ ├── UISplitViewController+DisplayMode.swift │ │ ├── UITableViewCell+Color.swift │ │ └── UIViewController+IBAction.swift │ ├── Floating │ │ ├── Floating.swift │ │ ├── FloatingController.swift │ │ ├── FloatingManager.swift │ │ ├── FloatingNavigationController.swift │ │ ├── FloatingPresentingController.swift │ │ ├── FloatingView.swift │ │ └── FloatingWindow.swift │ ├── Main.storyboard │ ├── Protocols │ │ ├── BackButtonActions.swift │ │ └── ChildHandler.swift │ ├── Result.swift │ └── Views │ │ ├── AboutHeader.swift │ │ ├── DetailCell.swift │ │ ├── DetailCell.xib │ │ └── InsetImageView.swift └── SettingsTests │ ├── Info.plist │ └── SettingsTests.swift ├── SettingsBundle ├── SettingsTest.xcodeproj │ └── project.pbxproj └── SettingsTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── Settings.bundle │ ├── 1.png │ ├── 2.png │ ├── AllElements.plist │ ├── Child.plist │ ├── Root.plist │ └── en.lproj │ │ ├── AllElements.strings │ │ └── Root.strings │ ├── SettingsManager.swift │ ├── UIApplication+URL.swift │ ├── UIApplication+Version.swift │ ├── UIDevice+Extensions.swift │ └── ViewController.swift ├── SideMenu1(SWReveal) ├── Podfile ├── Podfile.lock ├── SideMenu1.xcodeproj │ └── project.pbxproj └── SideMenu1 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── SideMenu2(SlideMenu) ├── Podfile ├── Podfile.lock ├── SideMenu2.xcodeproj │ └── project.pbxproj └── SideMenu2 │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SlideMenuControllerSwift+IB.swift │ └── ViewController.swift ├── SplitController ├── SplitController.xcodeproj │ └── project.pbxproj └── SplitController │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── DetailController.swift │ ├── MasterController.swift │ ├── SplitController.swift │ ├── SplitControllerKeyCommand.swift │ ├── SubDetailController.swift │ └── Support │ ├── ClearableTableSelection.swift │ ├── MasterTableView.swift │ ├── MulticastDelegate.swift │ ├── UISplitViewController+DisplayMode.swift │ └── UIViewController+Extensions.swift ├── SpotifyApiTest ├── SpotifyApiTest.xcodeproj │ └── project.pbxproj └── SpotifyApiTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── SpotifyApiTest-Bridging-Header.h │ ├── SpotifySDKManager.swift │ ├── SpotifyWebViewAuthController.swift │ ├── SpotifyiOS.framework │ ├── Headers │ ├── SpotifyiOS │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SPTAppRemote.h │ │ │ ├── SPTAppRemoteAlbum.h │ │ │ ├── SPTAppRemoteArtist.h │ │ │ ├── SPTAppRemoteCommon.h │ │ │ ├── SPTAppRemoteConnectionParams.h │ │ │ ├── SPTAppRemoteContentAPI.h │ │ │ ├── SPTAppRemoteContentItem.h │ │ │ ├── SPTAppRemoteCrossfadeState.h │ │ │ ├── SPTAppRemoteImageAPI.h │ │ │ ├── SPTAppRemoteImageRepresentable.h │ │ │ ├── SPTAppRemoteLibraryState.h │ │ │ ├── SPTAppRemotePlaybackOptions.h │ │ │ ├── SPTAppRemotePlaybackRestrictions.h │ │ │ ├── SPTAppRemotePlayerAPI.h │ │ │ ├── SPTAppRemotePlayerState.h │ │ │ ├── SPTAppRemotePodcastPlaybackSpeed.h │ │ │ ├── SPTAppRemoteTrack.h │ │ │ ├── SPTAppRemoteUserAPI.h │ │ │ ├── SPTAppRemoteUserCapabilities.h │ │ │ ├── SPTConfiguration.h │ │ │ ├── SPTError.h │ │ │ ├── SPTLogin.h │ │ │ ├── SPTMacros.h │ │ │ ├── SPTScope.h │ │ │ ├── SPTSession.h │ │ │ ├── SPTSessionManager.h │ │ │ ├── SpotifyAppRemote.h │ │ │ └── SpotifyiOS.h │ │ └── SpotifyiOS │ │ └── Current │ └── ViewController.swift ├── Spotlight ├── Spotlight.xcodeproj │ └── project.pbxproj ├── Spotlight │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── SpotlightManager.swift │ └── ViewController.swift └── SpotlightExtension │ ├── IndexRequestHandler.swift │ └── Info.plist ├── StateRestorationTest ├── StateRestorationTest.xcodeproj │ └── project.pbxproj └── StateRestorationTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TableViewController.swift │ └── ViewController.swift ├── StatusBarManager ├── .gitignore ├── StatusBarManager.xcodeproj │ └── project.pbxproj └── StatusBarManager │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── StatusBarController.swift │ ├── StatusBarManager.swift │ └── ViewController.swift ├── StatusBarTap ├── StatusBarTap.xcodeproj │ └── project.pbxproj └── StatusBarTap │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── StatusBarTap-Bridging-Header.h │ ├── UIStatusBarManager+StatusBarTap.m │ └── ViewController.swift ├── SwiftBest.zip ├── SwizzlingSwift ├── SwizzlingSwift.xcodeproj │ └── project.pbxproj └── SwizzlingSwift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SomeSiwzzable.swift │ ├── Swizzling.swift │ ├── SwizzlingManager.swift │ └── ViewController.swift ├── SystemVolumeManager ├── SystemVolumeManager.xcodeproj │ └── project.pbxproj └── SystemVolumeManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SystemVolumeManager.swift │ ├── ViewController.swift │ └── VolumeSlider.swift ├── TableViewOptimizationTest ├── TableViewOptimization.xcodeproj │ └── project.pbxproj └── TableViewOptimization │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── ShadowLabel.swift │ ├── TableViewCell.swift │ └── TableViewController.swift ├── TableViewTests ├── TableViewTests.xcodeproj │ └── project.pbxproj └── TableViewTests │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── TableViewTransparentEdges ├── TableViewTransparentEdges.xcodeproj │ └── project.pbxproj └── TableViewTransparentEdges │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DPTransparentEdgesScrollView.swift │ ├── DPTransparentEdgesTableView.swift │ ├── Info.plist │ ├── TableViewController.swift │ ├── TableViewDataSource.swift │ └── ViewController.swift ├── Tetris ├── Tetris.xcodeproj │ └── project.pbxproj └── Tetris │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ └── Info.plist ├── TextFieldHandlers ├── TextFieldHandlers.xcodeproj │ └── project.pbxproj └── TextFieldHandlers │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── Classes │ ├── LanguageTextField.swift │ ├── ReturnButtonHandlingTextField.swift │ ├── TextHandlers.swift │ ├── ValidatingTextField.swift │ └── Validators.swift │ ├── LanguageTextFieldController.swift │ ├── String+String.swift │ └── ViewController.swift ├── TextInputBar ├── TextInputBar.xcodeproj │ └── project.pbxproj └── TextInputBar │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── AssistantChatCell.swift │ ├── AssistantChatCell.xib │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ ├── TextInputBar.swift │ ├── TextInputBar.xib │ ├── UserChatCell.swift │ ├── UserChatCell.xib │ ├── ViewController.swift │ └── ViewController2.swift ├── TimeMeasurer ├── .gitignore ├── TimeMeasurer.xcodeproj │ └── project.pbxproj └── TimeMeasurer │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TimeMeasurer.swift │ └── ViewController.swift ├── Timer ├── .gitignore ├── Timer.xcodeproj │ └── project.pbxproj └── Timer │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── CountdownTimer.swift │ ├── MonospacedDigitFontExtensions.swift │ ├── TimerLabel.swift │ ├── TimerWrapper.swift │ └── ViewController.swift ├── TodayExtensionTest ├── .gitignore ├── TodayExtensionTest.xcodeproj │ └── project.pbxproj ├── TodayExtensionTest │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ └── TodayExtensionTest.entitlements │ ├── Classes │ │ ├── SharedUserDefaults.swift │ │ └── SystemUtils.swift │ └── Presentation │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ └── ViewController.swift └── TodayWidget │ ├── App │ ├── Info.plist │ └── TodayWidget.entitlements │ ├── Extensions │ └── NSExtensionContext+URL.swift │ └── Presentation │ ├── Base.lproj │ └── MainInterface.storyboard │ └── TodayViewController.swift ├── TorchManager ├── TorchManager.xcodeproj │ └── project.pbxproj └── TorchManager │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TorchManager.swift │ └── ViewController.swift ├── TouchBarTest ├── TouchBarTest.xcodeproj │ └── project.pbxproj └── TouchBarTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── MainMenu.xib │ ├── Info.plist │ ├── TouchBar.h │ ├── TouchBarTest-Bridging-Header.h │ └── TouchBarTest.entitlements ├── TouchDownButtonEvent ├── TouchDownButtonEvent.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── TouchDownButtonEvent.xcscheme └── TouchDownButtonEvent │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── TransitionGuessThePet-Finished_13.01.24 ├── GuessThePet.xcodeproj │ └── project.pbxproj └── GuessThePet │ ├── Animation controllers │ ├── FlipDismissAnimationController.swift │ └── FlipPresentAnimationController.swift │ ├── Bundle files │ ├── AppDelegate.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── back_cat.imageset │ │ │ ├── Contents.json │ │ │ ├── wiggles@1x.jpeg │ │ │ ├── wiggles@2x.jpeg │ │ │ └── wiggles@3x.jpeg │ │ ├── boring_fish.imageset │ │ │ ├── Contents.json │ │ │ ├── bongo@1x.jpeg │ │ │ ├── bongo@2x.jpeg │ │ │ └── bongo@3x.jpeg │ │ ├── epic_dog.imageset │ │ │ ├── Contents.json │ │ │ ├── wrigley@1x.jpeg │ │ │ ├── wrigley@2x.jpeg │ │ │ └── wrigley@3x.jpeg │ │ ├── sad_dog.imageset │ │ │ ├── Contents.json │ │ │ ├── rufus@1x.jpeg │ │ │ ├── rufus@2x.jpeg │ │ │ └── rufus@3x.jpeg │ │ └── sleepy_cat.imageset │ │ │ ├── Contents.json │ │ │ ├── rumble@1x.jpeg │ │ │ ├── rumble@2x.jpeg │ │ │ └── rumble@3x.jpeg │ └── Info.plist │ ├── Data │ ├── PetCardStore.swift │ └── Pets.plist │ ├── Helpers │ ├── AnimationHelper.swift │ └── ViewControllerProvider.swift │ ├── Interaction controllers │ └── SwipeInteractionController.swift │ ├── Model │ └── PetCard.swift │ ├── UI │ └── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ └── View controllers │ ├── CardViewController.swift │ ├── PageViewController.swift │ └── RevealViewController.swift ├── TransitionInteraction ├── InteractionTransition.xcodeproj │ └── project.pbxproj └── InteractionTransition │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── InteractionController.swift │ ├── PushAnimator.swift │ ├── TransitioningDelegate.swift │ └── ViewController.swift ├── Transitions ├── Transitions.xcodeproj │ └── project.pbxproj └── Transitions │ ├── Animator.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── FlipAnimator.swift │ ├── Info.plist │ ├── PushAnimator.swift │ ├── TransitioningDelegate.swift │ ├── UIViewController+Dismiss.swift │ └── ViewController.swift ├── UIComponents ├── UIComponents.xcodeproj │ └── project.pbxproj └── UIComponents │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── PlaceholderTextView.swift │ ├── PreviewContainer.swift │ ├── SceneDelegate.swift │ ├── ViewController.swift │ └── Views.swift ├── UIKeyCommandTest ├── UIKeyCommandTest.xcodeproj │ └── project.pbxproj └── UIKeyCommandTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── URLSessionWrapper ├── URLSessionWrapper.xcodeproj │ └── project.pbxproj └── URLSessionWrapper │ ├── APISerivice.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── URLSessionWrapper │ ├── CustomErrors.swift │ ├── Result.swift │ ├── URLConvertible.swift │ ├── URLSessionWrapper.swift │ ├── URLSessionWrapperErrors.swift │ └── URLTask.swift │ └── ViewController.swift ├── UnitTestsAndPerformance ├── UnitTestsAndPerformance.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── UnitTestsAndPerformance.xcscheme │ │ └── UnitTestsAndPerformanceTests.xcscheme ├── UnitTestsAndPerformance │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── RetainableController.swift └── UnitTestsAndPerformanceTests │ ├── Info.plist │ ├── UnitTestsAndPerformanceTests.swift │ └── XCTestCase+Deallocation.swift ├── UnitTestsCoreData ├── UnitTestsCoreData.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── UnitTestsCoreData.xcscheme ├── UnitTestsCoreData │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CoreDataStack │ │ ├── CoreDataStack.swift │ │ ├── NSManagedObject+Extensions.swift │ │ ├── NSManagedObjectContext+Extensions.swift │ │ ├── PersistentContainer.swift │ │ └── StoreContainer.swift │ ├── Info.plist │ ├── UnitTestsCoreData.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── UnitTestsCoreData.xcdatamodel │ │ │ └── contents │ └── ViewController.swift └── UnitTestsCoreDataTests │ ├── BaseCoreDataTests.swift │ ├── CoreDataDeletePerformanceTests.swift │ ├── CoreDataTests.swift │ ├── FetchedResultsControllerTests.swift │ └── Info.plist ├── UnitTestsRealm ├── UnitTestsRealm.xcodeproj │ └── project.pbxproj └── UnitTestsRealm │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── UniversalViewer ├── UniversalViewer.xcodeproj │ └── project.pbxproj └── UniversalViewer │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ImageScrollView.swift │ ├── Info.plist │ ├── UICollectionView+Extensions.swift │ ├── ViewController.swift │ ├── ViewerCell.swift │ └── ViewerCell.xib ├── VKSwiftyTest ├── Cartfile ├── Cartfile.resolved ├── VKSwiftyTest.xcodeproj │ └── project.pbxproj └── VKSwiftyTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── VK+URL.swift │ ├── VKAuthorizeResult.swift │ ├── VKManager.swift │ └── ViewController.swift ├── VKTest ├── Cartfile ├── Cartfile.resolved ├── VKTest.xcodeproj │ └── project.pbxproj └── VKTest │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── UIApplication+Controller.swift │ ├── VKManager.swift │ ├── VKSdk+URL.swift │ └── ViewController.swift ├── VibrationTest(TapticEngineExample) ├── README.md ├── TapticEngineExample.xcodeproj │ └── project.pbxproj └── TapticEngineExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── UIDevice+Extension.swift │ └── ViewController.swift ├── ViperApp ├── .gitignore ├── .swiftlint.yml ├── Brewfile ├── Cartfile ├── Cartfile.resolved ├── Gemfile ├── Rambafile ├── Scripts │ ├── carthage.sh │ └── swiftlint.sh ├── ViperApp-Mac │ ├── Base.lproj │ │ └── Main.storyboard │ ├── DetailViewController.swift │ ├── Info.plist │ ├── ViewController.swift │ ├── ViperApp-Mac.entitlements │ └── ViperApp_Mac.entitlements ├── ViperApp.xcodeproj │ └── project.pbxproj └── ViperApp │ ├── App │ ├── AppDelegate │ │ ├── AppDelegate.swift │ │ └── AppDelegateMac.swift │ ├── Assemblies │ │ ├── AppDelegatesAssembly.swift │ │ ├── ClientsAssembly.swift │ │ ├── MainAssembliesFactory.swift │ │ ├── ServicesAssembly.swift │ │ ├── StoragesAssembly.swift │ │ ├── StoryboardsAssembly.swift │ │ └── SystemInfrastructureAssembly.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Base │ │ ├── LaunchRouter.swift │ │ ├── MainApplication.swift │ │ ├── MainLaunchRouter.swift │ │ ├── MainLaunchRouterMac.swift │ │ └── main.swift │ └── Info.plist │ ├── Buisness │ ├── Clients │ │ ├── AlamofireClientProtocols.swift │ │ └── PostClient.swift │ ├── Entities │ │ ├── BackendError.swift │ │ ├── BaseRealmObject.swift │ │ └── Post.swift │ ├── Services │ │ └── PostService.swift │ ├── Storages │ │ ├── PostStorage.swift │ │ └── RealmStorageProtocols.swift │ └── URLs.swift │ ├── Presentations │ └── UserStories │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Detail │ │ ├── Assembly │ │ │ └── DetailModuleAssembly.swift │ │ ├── Interactor │ │ │ ├── DetailInteractor.swift │ │ │ └── DetailInteractorIO.swift │ │ ├── Presenter │ │ │ ├── DetailModuleInput.swift │ │ │ └── DetailPresenter.swift │ │ ├── Router │ │ │ ├── DetailRouter.swift │ │ │ └── DetailRouterInput.swift │ │ └── View │ │ │ ├── DetailViewController.swift │ │ │ ├── DetailViewIO.swift │ │ │ └── PostView.swift │ │ └── List │ │ ├── Assembly │ │ └── ListModuleAssembly.swift │ │ ├── Interactor │ │ ├── ListInteractor.swift │ │ └── ListInteractorIO.swift │ │ ├── Presenter │ │ ├── ListModuleInput.swift │ │ └── ListPresenter.swift │ │ ├── Router │ │ ├── ListRouter.swift │ │ └── ListRouterInput.swift │ │ └── View │ │ ├── ListViewController.swift │ │ └── ListViewIO.swift │ └── Support │ ├── Alamofire+Codable.swift │ ├── Promisable.swift │ ├── UIAlertController+Show.swift │ └── URL+Path.swift ├── ViperKit ├── .gitignore ├── ViperKit.podspec ├── ViperKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ViperKit macOS.xcscheme │ │ └── ViperKit.xcscheme └── ViperKit │ ├── ConfigurationBlockHolder.swift │ ├── Info.plist │ ├── ModuleInput.swift │ ├── ModuleInputProvider.swift │ ├── TransitionHandler.swift │ ├── ViperController.swift │ └── ViperKit.h ├── WeatherApp ├── .editorconfig ├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── Brewfile ├── Cartfile ├── Cartfile.resolved ├── Gemfile ├── Gemfile.lock ├── Podfile ├── Podfile.lock ├── README.md ├── Scripts │ ├── alias.sh │ ├── carthage.sh │ ├── pngcrush.sh │ ├── pngcrush_result.txt │ ├── swiftgen.sh │ └── swiftlint.sh ├── WeatherApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── WeatherApp.xcscheme │ │ └── WeatherAppUITests2.xcscheme ├── WeatherApp │ ├── App │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ │ └── LaunchScreen.storyboard │ │ ├── Info.plist │ │ ├── Resources │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── app_icon-120x120.png │ │ │ │ │ ├── app_icon-152x152.png │ │ │ │ │ ├── app_icon-167x167.png │ │ │ │ │ ├── app_icon-180x180.png │ │ │ │ │ ├── app_icon-20x20.png │ │ │ │ │ ├── app_icon-29x29.png │ │ │ │ │ ├── app_icon-40x40.png │ │ │ │ │ ├── app_icon-58x58.png │ │ │ │ │ ├── app_icon-60x60.png │ │ │ │ │ ├── app_icon-76x76.png │ │ │ │ │ ├── app_icon-80x80.png │ │ │ │ │ └── app_icon-87x87.png │ │ │ │ ├── Contents.json │ │ │ │ ├── im_cloud.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── cloud.jpg │ │ │ │ └── im_snowflake.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── snowflake.png │ │ │ ├── Colors.swift │ │ │ ├── Fonts.swift │ │ │ ├── Images.swift │ │ │ ├── Strings.swift │ │ │ ├── URLs.swift │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ │ └── ru.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── Localizable.strings │ │ └── Settings.bundle │ │ │ ├── Root.plist │ │ │ ├── en.lproj │ │ │ └── Root.strings │ │ │ └── ru.lproj │ │ │ └── Root.strings │ ├── Business │ │ ├── Classes │ │ │ ├── AppearanceManager.swift │ │ │ ├── FabricManager.swift │ │ │ ├── SettingsBundleManager │ │ │ │ ├── SettingsManager.swift │ │ │ │ └── UIApplication+Version.swift │ │ │ └── UserDefaultsManager │ │ │ │ ├── DefaultKeys.swift │ │ │ │ └── UserDefaultsManager.swift │ │ ├── Entities │ │ │ ├── BackendError.swift │ │ │ ├── BaseRealmObject.swift │ │ │ ├── Errors.swift │ │ │ ├── Photo.swift │ │ │ ├── Place.swift │ │ │ ├── Weather.swift │ │ │ └── WeatherRealm.swift │ │ ├── RealmStorageProtocols.swift │ │ ├── Services │ │ │ ├── PhotosService.swift │ │ │ └── WeatherService.swift │ │ ├── WeatherClient.swift │ │ └── WeatherForecastStorage.swift │ ├── Presentation │ │ ├── Main │ │ │ ├── BackgroundController.swift │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── Emitter.swift │ │ │ ├── ForecastCell.swift │ │ │ ├── ForecastDisplayManager.swift │ │ │ ├── MainView.swift │ │ │ └── ViewController.swift │ │ └── Settings │ │ │ ├── AppIcon │ │ │ ├── AppIcon.swift │ │ │ ├── AppIconCell.swift │ │ │ ├── AppIconManager.swift │ │ │ ├── AppIconPicker.swift │ │ │ ├── AppIcons │ │ │ │ ├── clear.png │ │ │ │ ├── clouds.png │ │ │ │ └── rain.png │ │ │ └── UIApplication+Icon.swift │ │ │ ├── Base.lproj │ │ │ └── Settings.storyboard │ │ │ ├── ColorsController.swift │ │ │ ├── Fonts picker │ │ │ ├── FontCell.swift │ │ │ ├── FontFamily.swift │ │ │ ├── FontPickerManager.swift │ │ │ ├── FontType.swift │ │ │ ├── FontsController.swift │ │ │ └── FontsManager.swift │ │ │ ├── Language select │ │ │ ├── LanguageCell.swift │ │ │ └── LanguageController.swift │ │ │ ├── Search │ │ │ ├── AutocompleteManager.swift │ │ │ ├── PlacesController.swift │ │ │ └── SearchController.swift │ │ │ └── SettingsController.swift │ └── Support │ │ ├── Classes │ │ ├── AssociationManager.swift │ │ ├── KeyboardLayoutConstraint.swift │ │ ├── MulticastDelegate.swift │ │ ├── NoDelayScrollView.swift │ │ └── SpringLabel.swift │ │ ├── Colors │ │ ├── Colors+Views.swift │ │ ├── UIImage+Color.swift │ │ └── UserDefaults+Color.swift │ │ ├── Extensions │ │ ├── 3rd │ │ │ ├── Alamofire+PromisableMapping.swift │ │ │ ├── Kingfisher+Promise.swift │ │ │ ├── NSAttributedString+GooglePlace.swift │ │ │ ├── Promisable.swift │ │ │ ├── Promise+Catch.swift │ │ │ ├── Promise+Init.swift │ │ │ └── Realm+Array.swift │ │ ├── Array+Execute.swift │ │ ├── Collection+Safe.swift │ │ ├── Emptyable protocol.swift │ │ ├── NSObject+AccessLabel.swift │ │ ├── Radians+Extensions.swift │ │ ├── String+Substring.swift │ │ ├── UI │ │ │ ├── UIColor+Adjust.swift │ │ │ ├── UIImage+Kingfisher.swift │ │ │ ├── UIResponder+Set.swift │ │ │ ├── UIScrollView+Refresh.swift │ │ │ ├── UISearchBar+Properties.swift │ │ │ ├── UIStoryboard+Controller.swift │ │ │ ├── UITableView+Extensions.swift │ │ │ ├── UITextField+Properties.swift │ │ │ ├── UIView │ │ │ │ ├── UIView+Layer.swift │ │ │ │ └── UIView+Properties.swift │ │ │ └── UIViewController │ │ │ │ ├── UIViewController+Child.swift │ │ │ │ └── UIViewController+IBAction.swift │ │ ├── URL+Path.swift │ │ └── UserDefaults+UIImage.swift │ │ ├── Fonts │ │ ├── Fonts+AdvancedViews.swift │ │ ├── Fonts+Views.swift │ │ └── UIView+Fonts.swift │ │ ├── Localization │ │ ├── Localization+Views.swift │ │ ├── LocalizationManager.swift │ │ ├── String+LocalizationManager.swift │ │ └── UIApplication+Restart.swift │ │ ├── Logger │ │ ├── AlamofireLogger.swift │ │ ├── Dispatch+Current.swift │ │ ├── Logger.swift │ │ ├── NetworkActivityLogger.swift │ │ └── Watchdog.swift │ │ └── Strongify.swift ├── WeatherAppTests │ ├── BaseUITests.swift │ ├── Info.plist │ ├── WeatherAppTests.swift │ └── XCTest+KIF.swift ├── WeatherAppUITests2 │ ├── BaseUITest.swift │ ├── Info.plist │ └── WeatherAppUITests2.swift ├── fastlane │ ├── Appfile │ ├── Deliverfile │ ├── Fastfile │ ├── Matchfile │ ├── Pluginfile │ ├── Precheckfile │ ├── README.md │ ├── Snapfile │ ├── SnapshotHelper.swift │ ├── metadata │ │ ├── app_icon.png │ │ ├── copyright.txt │ │ ├── en-US │ │ │ ├── description.txt │ │ │ ├── keywords.txt │ │ │ ├── marketing_url.txt │ │ │ ├── name.txt │ │ │ ├── privacy_url.txt │ │ │ ├── release_notes.txt │ │ │ └── support_url.txt │ │ ├── primary_category.txt │ │ ├── primary_first_sub_category.txt │ │ ├── primary_second_sub_category.txt │ │ ├── review_information │ │ │ ├── demo_password.txt │ │ │ ├── demo_user.txt │ │ │ ├── email_address.txt │ │ │ ├── first_name.txt │ │ │ ├── last_name.txt │ │ │ ├── notes.txt │ │ │ └── phone_number.txt │ │ ├── secondary_category.txt │ │ ├── secondary_first_sub_category.txt │ │ └── secondary_second_sub_category.txt │ ├── screenshots │ │ ├── Framefile.json │ │ ├── background.jpg │ │ ├── en-US │ │ │ ├── keyword.strings │ │ │ └── title.strings │ │ ├── fonts │ │ │ └── HelveticaNeue-Light.otf │ │ └── ru │ │ │ ├── keyword.strings │ │ │ └── title.strings │ └── testers.csv ├── install └── swiftgen.yml ├── WindowFloating ├── WindowFloating.xcodeproj │ └── project.pbxproj └── WindowFloating │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Floating │ ├── Floating.swift │ ├── FloatingController.swift │ ├── FloatingManager.swift │ ├── FloatingView.swift │ └── FloatingWindow.swift │ └── Presentation │ ├── Base.lproj │ └── Main.storyboard │ ├── NavigationViewController.swift │ └── ViewController.swift ├── YoutubeView ├── Podfile ├── Podfile.lock ├── YoutubeView.xcodeproj │ └── project.pbxproj └── YoutubeView │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── _mac ├── Bluetooth-Keyboard-Emulator │ ├── Keyboard Connect Open Source.xcodeproj │ │ └── project.pbxproj │ ├── Keyboard Connect Open Source │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── BTKeyboard.swift │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── EventHandler.swift │ │ ├── HIDReportDescriptor.txt │ │ ├── Info.plist │ │ ├── KeyCodes.swift │ │ ├── PermissionManager.swift │ │ ├── SerialPortDictionary.plist │ │ └── main.swift │ ├── LICENSE.md │ └── README.md ├── CoreBluetoothTest │ ├── CoreBluetoothTest.xcodeproj │ │ └── project.pbxproj │ └── CoreBluetoothTest │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── BluetoothManager.swift │ │ ├── CoreBluetoothTest.entitlements │ │ ├── Info.plist │ │ └── ViewController.swift ├── EmptyProject │ ├── EmptyProject.xcodeproj │ │ └── project.pbxproj │ └── EmptyProject │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── EmptyProject.entitlements │ │ ├── Info.plist │ │ └── main.swift ├── FnLock │ ├── FnLock.xcodeproj │ │ └── project.pbxproj │ └── FnLock │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── FnLock.entitlements │ │ ├── Info.plist │ │ └── ViewController.swift ├── ImageRotator │ ├── ImageRotator.xcodeproj │ │ └── project.pbxproj │ └── ImageRotator │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── DropView.swift │ │ ├── ImageRotator.entitlements │ │ ├── Info.plist │ │ └── ViewController.swift ├── InternHelper │ ├── .gitignore │ ├── InternHelper.xcodeproj │ │ └── project.pbxproj │ ├── InternHelper │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── StatusBarButton.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── StatusBarButtonImage@2x.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Constants.swift │ │ ├── Controllers │ │ │ ├── EventCell.swift │ │ │ ├── EventsListController.swift │ │ │ ├── EventsListController.xib │ │ │ ├── LoginController.swift │ │ │ ├── LoginController.xib │ │ │ ├── UsersListController.swift │ │ │ └── UsersListController.xib │ │ ├── EventMonitor.swift │ │ ├── Info.plist │ │ └── Model │ │ │ ├── Entities │ │ │ ├── Errors.swift │ │ │ ├── Event.swift │ │ │ ├── OCToken.swift │ │ │ ├── OCUser.swift │ │ │ └── OCUserCredentials.swift │ │ │ ├── Repositories │ │ │ ├── OCPaginator.swift │ │ │ ├── OCRepository.swift │ │ │ └── OCUserRepository.swift │ │ │ └── Services │ │ │ └── OCAccountService.swift │ ├── Podfile │ └── Podfile.lock ├── LEDsControl │ ├── LEDsControl.xcodeproj │ │ └── project.pbxproj │ └── LEDsControl │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── LEDsControl.entitlements │ │ └── ViewController.swift ├── LaunchAtLogin │ ├── LaunchAtLogin.xcodeproj │ │ └── project.pbxproj │ ├── LaunchAtLogin │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── LaunchAtLogin.entitlements │ │ └── ViewController.swift │ ├── LaunchAtLoginLauncher │ │ ├── AppDelegateHelper.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── LaunchAtLoginLauncher.entitlements │ └── not my project that works.zip ├── LaunchAtLoginDepricated │ ├── LaunchAtLoginDepricated.xcodeproj │ │ └── project.pbxproj │ └── LaunchAtLoginDepricated │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── LaunchAtLogin.swift │ │ ├── LaunchAtLoginDepricated.entitlements │ │ ├── StartupLauncher.swift │ │ └── ViewController.swift ├── LaunchAtLoginTest │ ├── LaunchAtLoginTest.xcodeproj │ │ └── project.pbxproj │ ├── LaunchAtLoginTest │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── LaunchAtLoginTest.entitlements │ │ └── ViewController.swift │ ├── Podfile │ └── Podfile.lock ├── MacCollections │ ├── MacCollections.xcodeproj │ │ └── project.pbxproj │ └── MacCollections │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── TestColCell.swift │ │ ├── TestColCell.xib │ │ └── ViewController.swift ├── MacTimer │ ├── MacTimer.xcodeproj │ │ └── project.pbxproj │ ├── MacTimer │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── CollCell.swift │ │ ├── CollCell.xib │ │ ├── CutomCell.swift │ │ ├── Info.plist │ │ ├── LoginController.swift │ │ ├── SocketIOManager.swift │ │ ├── TimerController.swift │ │ └── WindowController.swift │ ├── Podfile │ └── Podfile.lock ├── MuteMic │ ├── MuteMic.xcodeproj │ │ └── project.pbxproj │ └── MuteMic │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── mic_off.imageset │ │ │ ├── Contents.json │ │ │ ├── mic_off.png │ │ │ └── mic_off@2x.png │ │ └── mic_on.imageset │ │ │ ├── Contents.json │ │ │ ├── mic_on.png │ │ │ └── mic_on@2x.png │ │ ├── Info.plist │ │ ├── MuteMic.entitlements │ │ ├── MuteMicManager.swift │ │ ├── Optional+Assert.swift │ │ ├── StatusItemManager.swift │ │ └── main.swift ├── QRScreenScanner │ ├── QRScreenScanner.xcodeproj │ │ └── project.pbxproj │ └── QRScreenScanner │ │ ├── App │ │ ├── App.swift │ │ ├── AppDelegate.swift │ │ ├── MenuManager.swift │ │ ├── StatusItemManager.swift │ │ ├── ToolbarManager.swift │ │ ├── WindowsManager.swift │ │ └── main.swift │ │ ├── Extensions │ │ ├── Array+Safe.swift │ │ ├── CGError+Assert.swift │ │ ├── Collection+Extnesions.swift │ │ ├── NSButton+Init.swift │ │ ├── NSToolbarItem+Init.swift │ │ └── Optional+Assert.swift │ │ ├── Logic │ │ ├── History.swift │ │ └── HistoryDataSource.swift │ │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Credits.rtf │ │ ├── Info.plist │ │ └── QRScreenScanner.entitlements │ │ ├── Servies │ │ ├── CodeDetector.swift │ │ ├── DisplayConfigurator.swift │ │ ├── QRService.swift │ │ ├── ScreenManager.swift │ │ ├── System.swift │ │ └── SystemWindowsManager.swift │ │ └── UI │ │ ├── Classes │ │ ├── CustomTableView.swift │ │ ├── DropView.swift │ │ └── ToolbarItemGroup.swift │ │ └── ViewController.swift ├── ScreenRecorder │ ├── ScreenRecorder.xcodeproj │ │ └── project.pbxproj │ └── ScreenRecorder │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ScreenRecorder.entitlements │ │ ├── ScreenRecorder.swift │ │ └── ViewController.swift ├── TableViewTests │ ├── TableViewTests.xcodeproj │ │ └── project.pbxproj │ └── TableViewTests │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── TableViewTests.entitlements │ │ └── ViewController.swift ├── UndoManagerMac │ ├── UndoManagerMac.xcodeproj │ │ └── project.pbxproj │ └── UndoManagerMac │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── UndoManagerMac.entitlements │ │ └── ViewController.swift └── VideoPlayer │ ├── Podfile │ ├── Podfile.lock │ ├── VideoPlayer.xcodeproj │ └── project.pbxproj │ └── VideoPlayer │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Info.plist │ ├── VideoPlayer.entitlements │ ├── ViewController.swift │ └── video_test.mp4 ├── _objc ├── CalendarWork │ ├── WorkCalendar.xcodeproj │ │ └── project.pbxproj │ └── WorkCalendar │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── CollectionReusableView.h │ │ ├── CollectionReusableView.m │ │ ├── CollectionViewCell.h │ │ ├── CollectionViewCell.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZZSetupController.h │ │ ├── ZZSetupController.m │ │ └── main.m ├── Calender │ ├── Calender.xcodeproj │ │ └── project.pbxproj │ └── Calender │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── CollectionReusableView.h │ │ ├── CollectionReusableView.m │ │ ├── CollectionViewCell.h │ │ ├── CollectionViewCell.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── ClearAppTestWithCode │ ├── ClearAppTest.xcodeproj │ │ └── project.pbxproj │ └── ClearAppTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── CoreDataObjCTest │ ├── .gitignore │ ├── CoreDataObjCTest.xcodeproj │ │ └── project.pbxproj │ └── CoreDataObjCTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── CoreDataManager.h │ │ ├── CoreDataManager.m │ │ ├── CoreDataObjCTest.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── CoreDataObjCTest.xcdatamodel │ │ │ └── contents │ │ ├── Entities │ │ ├── Task+CoreDataProperties.h │ │ ├── Task+CoreDataProperties.m │ │ ├── Task.h │ │ └── Task.m │ │ ├── Info.plist │ │ ├── TableViewController.h │ │ ├── TableViewController.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── DatesTest │ ├── DatesTest.xcodeproj │ │ └── project.pbxproj │ ├── DatesTest │ │ ├── ASObject.h │ │ ├── ASObject.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── DatesTestTests │ │ ├── DatesTestTests.m │ │ └── Info.plist │ └── DatesTestUITests │ │ ├── DatesTestUITests.m │ │ └── Info.plist ├── DrawingsTest │ ├── DrawingsTest.xcodeproj │ │ └── project.pbxproj │ ├── DrawingsTest │ │ ├── ASDrawingView.h │ │ ├── ASDrawingView.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── DrawingsTestTests │ │ ├── DrawingsTestTests.m │ │ └── Info.plist │ └── DrawingsTestUITests │ │ ├── DrawingsTestUITests.m │ │ └── Info.plist ├── EditingCellsTest │ ├── EditingCellsTest.xcodeproj │ │ └── project.pbxproj │ ├── EditingCellsTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ZZStudent.h │ │ ├── ZZStudent.m │ │ ├── ZZStudentGroup.h │ │ ├── ZZStudentGroup.m │ │ └── main.m │ ├── EditingCellsTestTests │ │ ├── EditingCellsTestTests.m │ │ └── Info.plist │ └── EditingCellsTestUITests │ │ ├── EditingCellsTestUITests.m │ │ └── Info.plist ├── GesturesTest │ ├── GesturesTest.xcodeproj │ │ └── project.pbxproj │ ├── GesturesTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── GesturesTestTests │ │ ├── GesturesTestTests.m │ │ └── Info.plist │ └── GesturesTestUITests │ │ ├── GesturesTestUITests.m │ │ └── Info.plist ├── MRCtest │ ├── MRCtest.xcodeproj │ │ └── project.pbxproj │ └── MRCtest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── CustomNSLog.h │ │ ├── Info.plist │ │ ├── PrefixHeader.pch │ │ ├── SynthesizeSingleton.h │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── XXXChild.h │ │ ├── XXXChild.m │ │ ├── ZZZObject+Extensions.h │ │ ├── ZZZObject+Extensions.m │ │ ├── ZZZObject.h │ │ ├── ZZZObject.m │ │ └── main.m ├── NetworkingObjC │ ├── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── NetworkingObjC.xcodeproj │ │ └── project.pbxproj │ ├── NetworkingObjC │ │ ├── App │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Info.plist │ │ │ └── main.m │ │ ├── Business │ │ │ ├── Clients │ │ │ │ ├── PostClient.h │ │ │ │ └── PostClient.m │ │ │ ├── Constants.h │ │ │ ├── Constants.m │ │ │ ├── Entities │ │ │ │ ├── Post.h │ │ │ │ └── Post.m │ │ │ └── Storages │ │ │ │ ├── PostsStorage.h │ │ │ │ └── PostsStorage.m │ │ ├── Presentation │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── Post │ │ │ │ ├── PostView.h │ │ │ │ ├── PostView.m │ │ │ │ ├── ViewController.h │ │ │ │ └── ViewController.m │ │ │ └── Posts │ │ │ │ ├── PostCell.h │ │ │ │ ├── PostCell.m │ │ │ │ ├── TableViewController.h │ │ │ │ └── TableViewController.m │ │ └── Support │ │ │ └── Extensions │ │ │ ├── RLMResults+ToArray.h │ │ │ ├── RLMResults+ToArray.m │ │ │ ├── UITableView+Extensions.h │ │ │ └── UITableView+Extensions.m │ ├── Podfile │ ├── Podfile.lock │ ├── README.md │ └── install ├── NiblessMac │ ├── English.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ ├── JJApplication.h │ ├── JJApplication.m │ ├── JJApplicationDelegate.h │ ├── JJApplicationDelegate.m │ ├── JJBundle.h │ ├── JJBundle.m │ ├── JJMenuPopulator.h │ ├── JJMenuPopulator.m │ ├── Nibless.xcodeproj │ │ └── project.pbxproj │ ├── Nibless_Prefix.pch │ └── main.m ├── ProductsObjC │ ├── .gitignore │ ├── ProductsObjC.xcodeproj │ │ └── project.pbxproj │ ├── ProductsObjC │ │ ├── App │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── placeholder.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── placeholder.png │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── Info.plist │ │ │ ├── PrefixHeader.pch │ │ │ └── main.m │ │ ├── Business │ │ │ ├── Clients │ │ │ │ ├── ProductsClient.h │ │ │ │ └── ProductsClient.m │ │ │ ├── Constants.h │ │ │ ├── Constants.m │ │ │ ├── Entities │ │ │ │ ├── Product.h │ │ │ │ └── Product.m │ │ │ ├── Services │ │ │ │ ├── ProductsService.h │ │ │ │ └── ProductsService.m │ │ │ └── Storages │ │ │ │ ├── CoraData │ │ │ │ ├── CoraDataManager.h │ │ │ │ ├── CoraDataManager.m │ │ │ │ └── ProductsObjC.xcdatamodeld │ │ │ │ │ └── ProductsObjC.xcdatamodel │ │ │ │ │ └── contents │ │ │ │ ├── ProductsStorage.h │ │ │ │ └── ProductsStorage.m │ │ ├── Presentation │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── ProductDetail │ │ │ │ ├── ProductDetailController.h │ │ │ │ ├── ProductDetailController.m │ │ │ │ ├── ProductView.h │ │ │ │ └── ProductView.m │ │ │ └── Products │ │ │ │ ├── ProductCell.h │ │ │ │ ├── ProductCell.m │ │ │ │ ├── ProductsController.h │ │ │ │ └── ProductsController.m │ │ └── Support │ │ │ ├── Classes │ │ │ ├── CacheManager.h │ │ │ └── CacheManager.m │ │ │ └── Extensions │ │ │ ├── UICollectionView+Extensions.h │ │ │ ├── UICollectionView+Extensions.m │ │ │ ├── UIImage+Size.h │ │ │ ├── UIImage+Size.m │ │ │ ├── UIImageView+Network.h │ │ │ ├── UIImageView+Network.m │ │ │ ├── UIViewController+Extensions.h │ │ │ └── UIViewController+Extensions.m │ ├── ProductsObjCTests │ │ ├── Info.plist │ │ └── ProductsObjCTests.m │ └── README.md ├── PropertiesObjC │ ├── PropertiesObjC.xcodeproj │ │ └── project.pbxproj │ └── PropertiesObjC │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── PropertyClass.h │ │ ├── PropertyClass.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── RoboWars │ ├── RoboWars.xcodeproj │ │ └── project.pbxproj │ └── RoboWars │ │ ├── ASAppDelegate.h │ │ ├── ASAppDelegate.m │ │ ├── ASBattleFieldView.h │ │ ├── ASBattleFieldView.m │ │ ├── ASBattleViewController.h │ │ ├── ASBattleViewController.m │ │ ├── ASPilot.h │ │ ├── ASPilot.m │ │ ├── ASRobot.h │ │ ├── ASRobot.m │ │ ├── ASSmart.h │ │ ├── ASSmart.m │ │ ├── ASTarget.h │ │ ├── ASTarget.m │ │ ├── ASTestPilot.h │ │ ├── ASTestPilot.m │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── Pilots │ │ ├── VirPilot.h │ │ └── VirPilot.m │ │ ├── RWPilot.h │ │ ├── RoboWars-Info.plist │ │ ├── RoboWars-Prefix.pch │ │ ├── en.lproj │ │ └── InfoPlist.strings │ │ └── main.m ├── ScheduleShift │ ├── ScheduleShift.xcodeproj │ │ └── project.pbxproj │ ├── ScheduleShift │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── ScheduleShiftTests │ │ ├── Info.plist │ │ └── ScheduleShiftTests.m │ └── ScheduleShiftUITests │ │ ├── Info.plist │ │ └── ScheduleShiftUITests.m ├── TableViewAnimations(Расписание) │ ├── TimeTableDynamic2.xcodeproj │ │ └── project.pbxproj │ ├── TimeTableDynamic2 │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ZZClass.h │ │ ├── ZZClass.m │ │ ├── ZZDay.h │ │ ├── ZZDay.m │ │ ├── ZZTableViewController.h │ │ ├── ZZTableViewController.m │ │ └── main.m │ ├── TimeTableDynamic2Tests │ │ ├── Info.plist │ │ └── TimeTableDynamic2Tests.m │ └── TimeTableDynamic2UITests │ │ ├── Info.plist │ │ └── TimeTableDynamic2UITests.m ├── TextFieldsFormatTest │ ├── TextFieldsFormatTest.xcodeproj │ │ └── project.pbxproj │ ├── TextFieldsFormatTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── TextFieldsFormatTestTests │ │ ├── Info.plist │ │ └── TextFieldsFormatTestTests.m │ └── TextFieldsFormatTestUITests │ │ ├── Info.plist │ │ └── TextFieldsFormatTestUITests.m ├── TouchesTest │ ├── TouchesTest.xcodeproj │ │ └── project.pbxproj │ ├── TouchesTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── TouchesTestTests │ │ ├── Info.plist │ │ └── TouchesTestTests.m │ └── TouchesTestUITests │ │ ├── Info.plist │ │ └── TouchesTestUITests.m ├── UIDynamicAnimatorTest │ ├── UIDynamicAnimatorTest.xcodeproj │ │ └── project.pbxproj │ └── UIDynamicAnimatorTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m ├── WebViewTest │ ├── WebViewTest.xcodeproj │ │ └── project.pbxproj │ └── WebViewTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── ImageTestViewController.h │ │ ├── ImageTestViewController.m │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── files │ │ ├── 1.txt │ │ ├── 10.jpg │ │ ├── 2.docx │ │ ├── 3.docx │ │ ├── 5.png │ │ ├── 6.rtf │ │ ├── 7.rtf │ │ ├── 8.pages │ │ └── 9.numbers │ │ └── main.m └── macStatusBarMenuObjC │ ├── macObjC.xcodeproj │ └── project.pbxproj │ └── macObjC │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ └── Main.storyboard │ ├── Functions.h │ ├── Functions.m │ ├── Info.plist │ ├── StatusBarMenu.h │ ├── StatusBarMenu.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── _objc_old.zip ├── _swiftui └── Notes │ ├── Notes.xcodeproj │ └── project.pbxproj │ └── Notes │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Event.swift │ ├── Info.plist │ ├── Notes.xcdatamodeld │ ├── .xccurrentversion │ └── Notes.xcdatamodel │ │ └── contents │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── SceneDelegate.swift ├── iOSComponents ├── iOSComponents.xcodeproj │ └── project.pbxproj └── iOSComponents │ ├── App │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ └── Info.plist │ ├── Base.lproj │ └── Main.storyboard │ ├── Classes │ ├── AppleCornerRadiusView.swift │ ├── AssociationManager.swift │ ├── BatteryManager.swift │ ├── BluetoothManager.swift │ ├── BrightnessManager.swift │ ├── CircleImageView.swift │ ├── ClearableSingleton.swift │ ├── ClosureTapGesture.swift │ ├── Device.swift │ ├── Formatters.swift │ ├── GoogleStaticMapsWrapper.swift │ ├── ImageFormat.swift │ ├── InsetsLabel.swift │ ├── KeyboardLayoutConstraint.swift │ ├── LocationManager.swift │ ├── MD5.swift │ ├── MulticastDelegate.swift │ ├── NoDelayScrollView.swift │ ├── PlaceholderTextView.swift │ ├── PreviewController.swift │ ├── ResizableTextView.swift │ ├── Result.swift │ ├── SelfSelectedButton.swift │ ├── SettingsManager.swift │ ├── StreamReaderWriter.swift │ ├── SwizzlingManager.swift │ ├── SystemVolumeManager.swift │ ├── TapGestureRecognizerWithClosure.swift │ ├── TimeMeasurer.swift │ ├── TypeManager.swift │ └── old files │ │ ├── DPTransparentEdgesScrollView.swift │ │ ├── DPTransparentEdgesTableView.swift │ │ ├── DesignableViews │ │ ├── DesignableButton.swift │ │ ├── DesignableCheckbox.swift │ │ ├── DesignableTextField.swift │ │ └── DesignableView.swift │ │ └── LockView.swift │ ├── Extensions │ ├── 3dParty │ │ ├── Alamofire+Extensions.swift │ │ ├── Alamofire+PromisableMapping.swift │ │ ├── Alamofire+Request.swift │ │ ├── Alamofire+Response.swift │ │ ├── Alamofire+Validate.swift │ │ ├── Facebook+Extension.swift │ │ ├── GoogleMaps │ │ │ ├── GMSMapView+Extensions.swift │ │ │ └── NSAttributedString+GooglePlace.swift │ │ ├── Kingfisher+Promise.swift │ │ ├── PhoneNumberKit+Extensions.swift │ │ ├── Promise+Catch.swift │ │ ├── QBImagePickerController+NavVC.swift │ │ ├── Realm+Array.swift │ │ ├── SlideMenuControllerSwift+IB.swift │ │ ├── VK+URL.swift │ │ └── VKSdk+URL.swift │ ├── Foundation │ │ ├── Array+Execute.swift │ │ ├── Array+Extensions.swift │ │ ├── Array+Safe.swift │ │ ├── Bundle+Path.swift │ │ ├── CGPoint+WithNew.swift │ │ ├── CGRect+Properties.swift │ │ ├── CGRect+Size.swift │ │ ├── CGRect+WithNew.swift │ │ ├── CGSize+Scale.swift │ │ ├── Data+File.swift │ │ ├── Date+Compare.swift │ │ ├── Date+Components.swift │ │ ├── Date+MilliSec.swift │ │ ├── Dispatch+Current.swift │ │ ├── DispatchQueue+Once.swift │ │ ├── Double+Number.swift │ │ ├── Double+String.swift │ │ ├── Equatable+Contains.swift │ │ ├── Equatable+Toggle.swift │ │ ├── FileManager+Size.swift │ │ ├── Int+NSTimeInterval.swift │ │ ├── NSCoding+archive.swift │ │ ├── NSDate+String.swift │ │ ├── NSDate+localizedString.swift │ │ ├── NSFileCoordinator+Coordinate.swift │ │ ├── NSObject+AccessLabel.swift │ │ ├── Radians+Extensions.swift │ │ ├── String+Digits.swift │ │ ├── String+Substring.swift │ │ ├── String+Text.swift │ │ ├── Text+Size.swift │ │ ├── URL+Path.swift │ │ ├── UserDefaults+AppGroup.swift │ │ ├── UserDefaults+Color.swift │ │ ├── UserDefaults+Subscript.swift │ │ └── UserDefaults+UIImage.swift │ ├── NSExtensionContext+URL.swift │ ├── SKProduct+Localized.swift.swift │ ├── UI │ │ ├── Colors+Views.swift │ │ ├── Fonts+AdvancedViews.swift │ │ ├── Fonts+Views.swift │ │ ├── KeyboardExtensions.swift │ │ ├── Localization+Views.swift │ │ ├── UI+FirstResponder.swift │ │ ├── UIAlertController+Extensions.swift │ │ ├── UIApplication+Icon.swift │ │ ├── UIApplication+URL.swift │ │ ├── UIApplication+Version.swift │ │ ├── UIApplication+topController.swift │ │ ├── UIBarButtonItem+Init.swift │ │ ├── UIButton+Image.swift │ │ ├── UICollectionView+Dequeue.swift │ │ ├── UICollectionView+Extensions.swift │ │ ├── UICollectionView+Layout.swift │ │ ├── UICollectionView+Scroll.swift │ │ ├── UIColor+Adjust.swift │ │ ├── UIColor+Default.swift │ │ ├── UIColor+Init.swift │ │ ├── UIDevice+Extensions.swift │ │ ├── UIImage+Blur.swift │ │ ├── UIImage+Blur2.swift │ │ ├── UIImage+Bytes.swift │ │ ├── UIImage+Color.swift │ │ ├── UIImage+Color2.swift │ │ ├── UIImage+Get.swift │ │ ├── UIImage+HEIC.swift │ │ ├── UIImage+Image.swift │ │ ├── UIImage+New.swift │ │ ├── UIImage+Orientation.swift │ │ ├── UIImage+Size.swift │ │ ├── UIImageView+Download.swift │ │ ├── UIImageView+Properties.swift │ │ ├── UIImageView+Scale.swift │ │ ├── UILabel+Extensions.swift │ │ ├── UINavigationBar+Text.swift │ │ ├── UINavigationController+Color.swift │ │ ├── UINavigationController+Push.swift │ │ ├── UIResponder+Set.swift │ │ ├── UIScrollView+Offest.swift │ │ ├── UIScrollView+Refresh.swift │ │ ├── UIScrollView+Scroll.swift │ │ ├── UISearchBar+Cancel.swift │ │ ├── UISearchBar+Properties.swift │ │ ├── UIStoryboard+Controller.swift │ │ ├── UISwitch+Properties.swift │ │ ├── UITabBarController+Extension.swift │ │ ├── UITableView+Extensions.swift │ │ ├── UITableView+IndexPaths.swift │ │ ├── UITextField+Cursor.swift │ │ ├── UITextField+Extnesions.swift │ │ ├── UITextView+Extensions.swift │ │ ├── UIView+Animation.swift │ │ ├── UIView+Blurable(9.0+).swift │ │ ├── UIView+Constrains.swift │ │ ├── UIView+Fonts.swift │ │ ├── UIView+Layer.swift │ │ ├── UIView+Nib.swift │ │ ├── UIView+Parent.swift │ │ ├── UIView+Properties.swift │ │ ├── UIView+Radius.swift │ │ ├── UIView+Self.swift │ │ ├── UIView+Shadow.swift │ │ ├── UIViewController+Child.swift │ │ ├── UIViewController+IBAction.swift │ │ ├── UIViewController+Navigation.swift │ │ ├── UIViewController+Network.swift │ │ ├── UIViewController+Present.swift │ │ └── URL+Path.swift │ ├── UIResponder+Set.swift~ours │ ├── UIView+Properties.swift~ours │ └── UIView+Properties.swift~theirs │ ├── Protocols │ ├── AnimationFlowManager.swift │ ├── ErrorPresenter.swift │ ├── Flippable.swift │ ├── InfinityRotater.swift │ ├── MapToJSON.swift │ ├── ShareController.swift │ ├── ShareData.swift │ └── StatusBarActions.swift │ ├── Typealias.swift │ └── ViewController.swift ├── iPadComponents ├── iPadComponents.xcodeproj │ └── project.pbxproj └── iPadComponents │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── infixOperator.playground ├── Contents.swift └── contents.xcplayground └── tvOStest ├── tvOStest.xcodeproj └── project.pbxproj └── tvOStest ├── App ├── AppDelegate.swift ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ ├── Contents.json │ └── Launch Image.launchimage │ │ └── Contents.json └── Info.plist ├── Base.lproj └── Main.storyboard ├── CollectionController.swift ├── SearchController.swift ├── SearchResultsViewController.swift ├── TabBarController.swift ├── UISearchController+Layout.swift └── ViewController.swift /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/.gitignore -------------------------------------------------------------------------------- /3DTouch/3DTouch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/3DTouch/3DTouch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3DTouch/3DTouch/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/3DTouch/3DTouch/AppDelegate.swift -------------------------------------------------------------------------------- /3DTouch/3DTouch/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/3DTouch/3DTouch/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /3DTouch/3DTouch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/3DTouch/3DTouch/Info.plist -------------------------------------------------------------------------------- /3DTouch/3DTouch/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/3DTouch/3DTouch/ViewController.swift -------------------------------------------------------------------------------- /ActivityIndicator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ActivityIndicator/.gitignore -------------------------------------------------------------------------------- /AlamofireTest/AlamofireTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AlamofireTest/AlamofireTest/Info.plist -------------------------------------------------------------------------------- /AlamofireTest/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AlamofireTest/Podfile -------------------------------------------------------------------------------- /AlamofireTest/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AlamofireTest/Podfile.lock -------------------------------------------------------------------------------- /AlternateIcon/AlternateIcon/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AlternateIcon/AlternateIcon/Info.plist -------------------------------------------------------------------------------- /AnimatablePopup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AnimatablePopup/.gitignore -------------------------------------------------------------------------------- /AnimationsAll/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AnimationsAll/.gitignore -------------------------------------------------------------------------------- /AnimationsAll/AnimationsAll/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AnimationsAll/AnimationsAll/Info.plist -------------------------------------------------------------------------------- /AnimationsAll/AnimationsAll/PopUpView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AnimationsAll/AnimationsAll/PopUpView.swift -------------------------------------------------------------------------------- /AnimationsAll/AnimationsAllTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AnimationsAll/AnimationsAllTests/Info.plist -------------------------------------------------------------------------------- /Appearance/Appearance/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Appearance/Appearance/AppDelegate.swift -------------------------------------------------------------------------------- /Appearance/Appearance/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Appearance/Appearance/Info.plist -------------------------------------------------------------------------------- /Appearance/Appearance/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Appearance/Appearance/ViewController.swift -------------------------------------------------------------------------------- /Assert/Assert.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Assert/Assert.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Assert/Assert/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Assert/Assert/AppDelegate.swift -------------------------------------------------------------------------------- /Assert/Assert/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Assert/Assert/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Assert/Assert/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Assert/Assert/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Assert/Assert/Dispatch+Assert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Assert/Assert/Dispatch+Assert.swift -------------------------------------------------------------------------------- /Assert/Assert/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Assert/Assert/Info.plist -------------------------------------------------------------------------------- /Assert/Assert/Optional+Assert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Assert/Assert/Optional+Assert.swift -------------------------------------------------------------------------------- /Assert/Assert/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Assert/Assert/ViewController.swift -------------------------------------------------------------------------------- /AsyncDisplayKitTest/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AsyncDisplayKitTest/Podfile -------------------------------------------------------------------------------- /AsyncDisplayKitTest/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AsyncDisplayKitTest/Podfile.lock -------------------------------------------------------------------------------- /AttemptsCounter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AttemptsCounter/.gitignore -------------------------------------------------------------------------------- /AttributedString/AttributedString/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AttributedString/AttributedString/Info.plist -------------------------------------------------------------------------------- /AudioComponents/AudioComponents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/AudioComponents/AudioComponents/Info.plist -------------------------------------------------------------------------------- /BackButtonHandler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/BackButtonHandler/.gitignore -------------------------------------------------------------------------------- /BackButtonHandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/BackButtonHandler/README.md -------------------------------------------------------------------------------- /Background/Background/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Background/Background/App/AppDelegate.swift -------------------------------------------------------------------------------- /Background/Background/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Background/Background/App/Info.plist -------------------------------------------------------------------------------- /Background/Background/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Background/Background/Logger.swift -------------------------------------------------------------------------------- /Background/Background/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Background/Background/ViewController.swift -------------------------------------------------------------------------------- /Background/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Background/Podfile -------------------------------------------------------------------------------- /Background/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Background/Podfile.lock -------------------------------------------------------------------------------- /BarcodeScanner/BarcodeScanner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/BarcodeScanner/BarcodeScanner/Info.plist -------------------------------------------------------------------------------- /Base.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Base.playground/Contents.swift -------------------------------------------------------------------------------- /Base.playground/Resources/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Base.playground/Resources/quotes.json -------------------------------------------------------------------------------- /Base.playground/Sources/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Base.playground/Sources/Helpers.swift -------------------------------------------------------------------------------- /Base.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Base.playground/contents.xcplayground -------------------------------------------------------------------------------- /BluetoothTest/BluetoothTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/BluetoothTest/BluetoothTest/Info.plist -------------------------------------------------------------------------------- /COVID/COVID.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /COVID/COVID/AppConfigurator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/AppConfigurator.swift -------------------------------------------------------------------------------- /COVID/COVID/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/AppDelegate.swift -------------------------------------------------------------------------------- /COVID/COVID/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /COVID/COVID/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /COVID/COVID/CountiesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/CountiesController.swift -------------------------------------------------------------------------------- /COVID/COVID/Country.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/Country.swift -------------------------------------------------------------------------------- /COVID/COVID/CountyDetailController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/CountyDetailController.swift -------------------------------------------------------------------------------- /COVID/COVID/CustomErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/CustomErrors.swift -------------------------------------------------------------------------------- /COVID/COVID/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/Extensions.swift -------------------------------------------------------------------------------- /COVID/COVID/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/Info.plist -------------------------------------------------------------------------------- /COVID/COVID/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/SceneDelegate.swift -------------------------------------------------------------------------------- /COVID/COVID/URLs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/URLs.swift -------------------------------------------------------------------------------- /COVID/COVID/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/COVID/COVID/ViewController.swift -------------------------------------------------------------------------------- /CSVDataBase/CSVDataBase/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CSVDataBase/CSVDataBase/AppDelegate.swift -------------------------------------------------------------------------------- /CSVDataBase/CSVDataBase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CSVDataBase/CSVDataBase/Info.plist -------------------------------------------------------------------------------- /CacheManager/CacheManager/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CacheManager/CacheManager/AppDelegate.swift -------------------------------------------------------------------------------- /CacheManager/CacheManager/DiskStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CacheManager/CacheManager/DiskStorage.swift -------------------------------------------------------------------------------- /CacheManager/CacheManager/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CacheManager/CacheManager/ImageFormat.swift -------------------------------------------------------------------------------- /CacheManager/CacheManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CacheManager/CacheManager/Info.plist -------------------------------------------------------------------------------- /CacheManager/CacheManager/MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CacheManager/CacheManager/MD5.swift -------------------------------------------------------------------------------- /CameraManager/СameraManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CameraManager/СameraManager/Info.plist -------------------------------------------------------------------------------- /ChatTests/ChatTests/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatTests/ChatTests/AppDelegate.swift -------------------------------------------------------------------------------- /ChatTests/ChatTests/ChattoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatTests/ChatTests/ChattoController.swift -------------------------------------------------------------------------------- /ChatTests/ChatTests/DataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatTests/ChatTests/DataProvider.swift -------------------------------------------------------------------------------- /ChatTests/ChatTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatTests/ChatTests/Info.plist -------------------------------------------------------------------------------- /ChatTests/ChatTests/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatTests/ChatTests/SceneDelegate.swift -------------------------------------------------------------------------------- /ChatTests/ChatTests/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatTests/ChatTests/ViewController.swift -------------------------------------------------------------------------------- /ChatTests/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatTests/Podfile -------------------------------------------------------------------------------- /ChatTests/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatTests/Podfile.lock -------------------------------------------------------------------------------- /ChatView/ChatView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatView/ChatView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChatView/ChatView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatView/ChatView/AppDelegate.swift -------------------------------------------------------------------------------- /ChatView/ChatView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatView/ChatView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ChatView/ChatView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatView/ChatView/Info.plist -------------------------------------------------------------------------------- /ChatView/ChatView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ChatView/ChatView/ViewController.swift -------------------------------------------------------------------------------- /CircleProgress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CircleProgress/.gitignore -------------------------------------------------------------------------------- /CircleProgress/CircleProgress/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CircleProgress/CircleProgress/App/Info.plist -------------------------------------------------------------------------------- /ClearableSingleton/Singleton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ClearableSingleton/Singleton/Info.plist -------------------------------------------------------------------------------- /ColorsFontsForIB/Customization/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ColorsFontsForIB/Customization/Colors.swift -------------------------------------------------------------------------------- /ColorsFontsForIB/Customization/Colors1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ColorsFontsForIB/Customization/Colors1.swift -------------------------------------------------------------------------------- /ColorsFontsForIB/Customization/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ColorsFontsForIB/Customization/Fonts.swift -------------------------------------------------------------------------------- /ColorsFontsForIB/Customization/Fonts1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ColorsFontsForIB/Customization/Fonts1.swift -------------------------------------------------------------------------------- /ColorsFontsForIB/Customization/Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ColorsFontsForIB/Customization/Images.swift -------------------------------------------------------------------------------- /ColorsFontsForIB/Customization/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ColorsFontsForIB/Customization/Info.plist -------------------------------------------------------------------------------- /CoreDataMulti/CoreDataMulti/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CoreDataMulti/CoreDataMulti/Info.plist -------------------------------------------------------------------------------- /CountryCode/CountryCode/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CountryCode/CountryCode/App/Info.plist -------------------------------------------------------------------------------- /CountryCode/CountryCode/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CountryCode/CountryCode/ViewController.swift -------------------------------------------------------------------------------- /CustomViews/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CustomViews/.gitignore -------------------------------------------------------------------------------- /CustomViews/CustomViews/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CustomViews/CustomViews/AppDelegate.swift -------------------------------------------------------------------------------- /CustomViews/CustomViews/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CustomViews/CustomViews/Info.plist -------------------------------------------------------------------------------- /CustomViews/CustomViews/UIColor+Adjust.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CustomViews/CustomViews/UIColor+Adjust.swift -------------------------------------------------------------------------------- /CustomViews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/CustomViews/README.md -------------------------------------------------------------------------------- /DIKit/DIKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DIKit/DIKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DIKit/DIKit/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DIKit/DIKit/AppDelegate.swift -------------------------------------------------------------------------------- /DIKit/DIKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DIKit/DIKit/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DIKit/DIKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DIKit/DIKit/Info.plist -------------------------------------------------------------------------------- /DIKit/DIKit/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DIKit/DIKit/ViewController.swift -------------------------------------------------------------------------------- /DashView/DashView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DashView/DashView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DashView/DashView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DashView/DashView/AppDelegate.swift -------------------------------------------------------------------------------- /DashView/DashView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DashView/DashView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DashView/DashView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DashView/DashView/Info.plist -------------------------------------------------------------------------------- /DashView/DashView/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DashView/DashView/SceneDelegate.swift -------------------------------------------------------------------------------- /DashView/DashView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DashView/DashView/ViewController.swift -------------------------------------------------------------------------------- /DataBaseTest/DataBaseTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DataBaseTest/DataBaseTest/AppDelegate.swift -------------------------------------------------------------------------------- /DataBaseTest/DataBaseTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DataBaseTest/DataBaseTest/Info.plist -------------------------------------------------------------------------------- /DataBaseTest/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DataBaseTest/Podfile -------------------------------------------------------------------------------- /DataBaseTest/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DataBaseTest/Podfile.lock -------------------------------------------------------------------------------- /DayOfTheProgrammer.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DayOfTheProgrammer.playground/Contents.swift -------------------------------------------------------------------------------- /DebugOverlay/DebugOverlay/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DebugOverlay/DebugOverlay/App/Info.plist -------------------------------------------------------------------------------- /DebugOverlay/DebugOverlay/DebugOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DebugOverlay/DebugOverlay/DebugOverlay.swift -------------------------------------------------------------------------------- /Debugger/Debugger.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Debugger/Debugger.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Debugger/Debugger/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Debugger/Debugger/AppDelegate.swift -------------------------------------------------------------------------------- /Debugger/Debugger/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Debugger/Debugger/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Debugger/Debugger/CallStackParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Debugger/Debugger/CallStackParser.swift -------------------------------------------------------------------------------- /Debugger/Debugger/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Debugger/Debugger/Info.plist -------------------------------------------------------------------------------- /Debugger/Debugger/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Debugger/Debugger/SceneDelegate.swift -------------------------------------------------------------------------------- /Debugger/Debugger/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Debugger/Debugger/ViewController.swift -------------------------------------------------------------------------------- /Decodable.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Decodable.playground/Contents.swift -------------------------------------------------------------------------------- /Decodable.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Decodable.playground/contents.xcplayground -------------------------------------------------------------------------------- /DiskSpace/DiskSpace/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DiskSpace/DiskSpace/AppDelegate.swift -------------------------------------------------------------------------------- /DiskSpace/DiskSpace/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DiskSpace/DiskSpace/Info.plist -------------------------------------------------------------------------------- /DiskSpace/DiskSpace/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DiskSpace/DiskSpace/ViewController.swift -------------------------------------------------------------------------------- /DragDrop/DragDrop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DragDrop/DragDrop/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop/AppDelegate.swift -------------------------------------------------------------------------------- /DragDrop/DragDrop/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DragDrop/DragDrop/ImageController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop/ImageController.swift -------------------------------------------------------------------------------- /DragDrop/DragDrop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop/Info.plist -------------------------------------------------------------------------------- /DragDrop/DragDrop/PhotoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop/PhotoCell.swift -------------------------------------------------------------------------------- /DragDrop/DragDrop/PhotosController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop/PhotosController.swift -------------------------------------------------------------------------------- /DragDrop/DragDrop/Reusable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop/Reusable.swift -------------------------------------------------------------------------------- /DragDrop/DragDrop/UIImage+Init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop/UIImage+Init.swift -------------------------------------------------------------------------------- /DragDrop/DragDrop/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DragDrop/DragDrop/ViewController.swift -------------------------------------------------------------------------------- /DropDownView/DropDownView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DropDownView/DropDownView/AppDelegate.swift -------------------------------------------------------------------------------- /DropDownView/DropDownView/DropDownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DropDownView/DropDownView/DropDownView.swift -------------------------------------------------------------------------------- /DropDownView/DropDownView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DropDownView/DropDownView/Info.plist -------------------------------------------------------------------------------- /DropboxManager/DropboxManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DropboxManager/DropboxManager/Info.plist -------------------------------------------------------------------------------- /DropboxManager/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DropboxManager/Podfile -------------------------------------------------------------------------------- /DropboxManager/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DropboxManager/Podfile.lock -------------------------------------------------------------------------------- /DynamicCell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DynamicCell/.gitignore -------------------------------------------------------------------------------- /DynamicCell/DynamicCell/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DynamicCell/DynamicCell/App/Info.plist -------------------------------------------------------------------------------- /DynamicFont/DynamicFont/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DynamicFont/DynamicFont/AppDelegate.swift -------------------------------------------------------------------------------- /DynamicFont/DynamicFont/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DynamicFont/DynamicFont/Info.plist -------------------------------------------------------------------------------- /DynamicFont/DynamicFont/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DynamicFont/DynamicFont/SceneDelegate.swift -------------------------------------------------------------------------------- /DynamicFont/DynamicFont/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/DynamicFont/DynamicFont/ViewController.swift -------------------------------------------------------------------------------- /EmailClient/EmailClient/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailClient/EmailClient/AppDelegate.swift -------------------------------------------------------------------------------- /EmailClient/EmailClient/ExceptionCatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailClient/EmailClient/ExceptionCatcher.h -------------------------------------------------------------------------------- /EmailClient/EmailClient/ExceptionCatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailClient/EmailClient/ExceptionCatcher.m -------------------------------------------------------------------------------- /EmailClient/EmailClient/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailClient/EmailClient/Info.plist -------------------------------------------------------------------------------- /EmailClient/EmailClient/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailClient/EmailClient/SceneDelegate.swift -------------------------------------------------------------------------------- /EmailClient/EmailClient/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailClient/EmailClient/ViewController.swift -------------------------------------------------------------------------------- /EmailClient/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailClient/Podfile -------------------------------------------------------------------------------- /EmailClient/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailClient/Podfile.lock -------------------------------------------------------------------------------- /EmailSender/EmailSender/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailSender/EmailSender/AppDelegate.swift -------------------------------------------------------------------------------- /EmailSender/EmailSender/EmailSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailSender/EmailSender/EmailSender.swift -------------------------------------------------------------------------------- /EmailSender/EmailSender/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailSender/EmailSender/Info.plist -------------------------------------------------------------------------------- /EmailSender/EmailSender/SMSSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailSender/EmailSender/SMSSender.swift -------------------------------------------------------------------------------- /EmailSender/EmailSender/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmailSender/EmailSender/ViewController.swift -------------------------------------------------------------------------------- /Emitter/Emitter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Emitter/Emitter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Emitter/Emitter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Emitter/Emitter/AppDelegate.swift -------------------------------------------------------------------------------- /Emitter/Emitter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Emitter/Emitter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Emitter/Emitter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Emitter/Emitter/Info.plist -------------------------------------------------------------------------------- /Emitter/Emitter/SAConfettiView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Emitter/Emitter/SAConfettiView.swift -------------------------------------------------------------------------------- /Emitter/Emitter/SnowflakeEmitter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Emitter/Emitter/SnowflakeEmitter.swift -------------------------------------------------------------------------------- /Emitter/Emitter/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Emitter/Emitter/ViewController.swift -------------------------------------------------------------------------------- /EmptyProject/EmptyProject/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmptyProject/EmptyProject/AppDelegate.swift -------------------------------------------------------------------------------- /EmptyProject/EmptyProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EmptyProject/EmptyProject/Info.plist -------------------------------------------------------------------------------- /EurekaTest/Cartfile: -------------------------------------------------------------------------------- 1 | github "xmartlabs/Eureka" ~> 2.0.0 -------------------------------------------------------------------------------- /EurekaTest/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "xmartlabs/Eureka" "2.0.1" 2 | -------------------------------------------------------------------------------- /EurekaTest/EurekaTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EurekaTest/EurekaTest/AppDelegate.swift -------------------------------------------------------------------------------- /EurekaTest/EurekaTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EurekaTest/EurekaTest/Info.plist -------------------------------------------------------------------------------- /EurekaTest/EurekaTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EurekaTest/EurekaTest/ViewController.swift -------------------------------------------------------------------------------- /EventKitTest/EventKitTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EventKitTest/EventKitTest/AppDelegate.swift -------------------------------------------------------------------------------- /EventKitTest/EventKitTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/EventKitTest/EventKitTest/Info.plist -------------------------------------------------------------------------------- /FacebookTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FacebookTest/.gitignore -------------------------------------------------------------------------------- /FacebookTest/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FacebookTest/Cartfile -------------------------------------------------------------------------------- /FacebookTest/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FacebookTest/Cartfile.resolved -------------------------------------------------------------------------------- /FacebookTest/FacebookTest/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FacebookTest/FacebookTest/App/Info.plist -------------------------------------------------------------------------------- /FacebookTest/FacebookTest/Classes/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FacebookTest/FacebookTest/Classes/User.swift -------------------------------------------------------------------------------- /FacebookTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FacebookTest/README.md -------------------------------------------------------------------------------- /FirebaseTest/FirebaseTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FirebaseTest/FirebaseTest/AppDelegate.swift -------------------------------------------------------------------------------- /FirebaseTest/FirebaseTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FirebaseTest/FirebaseTest/Info.plist -------------------------------------------------------------------------------- /FirebaseTest/FirebaseTest/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FirebaseTest/FirebaseTest/Logger.swift -------------------------------------------------------------------------------- /FirebaseTest/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FirebaseTest/Podfile -------------------------------------------------------------------------------- /FirebaseTest/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FirebaseTest/Podfile.lock -------------------------------------------------------------------------------- /FontForSizes/FontForSizes/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FontForSizes/FontForSizes/AppDelegate.swift -------------------------------------------------------------------------------- /FontForSizes/FontForSizes/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FontForSizes/FontForSizes/Fonts.swift -------------------------------------------------------------------------------- /FontForSizes/FontForSizes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FontForSizes/FontForSizes/Info.plist -------------------------------------------------------------------------------- /FontSelect/FontSelect/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FontSelect/FontSelect/AppDelegate.swift -------------------------------------------------------------------------------- /FontSelect/FontSelect/Fonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FontSelect/FontSelect/Fonts.swift -------------------------------------------------------------------------------- /FontSelect/FontSelect/FontsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FontSelect/FontSelect/FontsController.swift -------------------------------------------------------------------------------- /FontSelect/FontSelect/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FontSelect/FontSelect/Info.plist -------------------------------------------------------------------------------- /FontSelect/FontSelect/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/FontSelect/FontSelect/ViewController.swift -------------------------------------------------------------------------------- /Formatters/Formatters/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Formatters/Formatters/AppDelegate.swift -------------------------------------------------------------------------------- /Formatters/Formatters/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Formatters/Formatters/Info.plist -------------------------------------------------------------------------------- /Formatters/Formatters/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Formatters/Formatters/SceneDelegate.swift -------------------------------------------------------------------------------- /Formatters/Formatters/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Formatters/Formatters/ViewController.swift -------------------------------------------------------------------------------- /GCD/GCD.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GCD/GCD/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/AppDelegate.swift -------------------------------------------------------------------------------- /GCD/GCD/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GCD/GCD/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GCD/GCD/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GCD/GCD/Benchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/Benchmark.swift -------------------------------------------------------------------------------- /GCD/GCD/CountWhere.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/CountWhere.swift -------------------------------------------------------------------------------- /GCD/GCD/Dispatch+Assert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/Dispatch+Assert.swift -------------------------------------------------------------------------------- /GCD/GCD/DispatchQueue+Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/DispatchQueue+Main.swift -------------------------------------------------------------------------------- /GCD/GCD/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/Info.plist -------------------------------------------------------------------------------- /GCD/GCD/Throttler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/Throttler.swift -------------------------------------------------------------------------------- /GCD/GCD/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GCD/GCD/ViewController.swift -------------------------------------------------------------------------------- /Google api and geocoder/AutoCompleteAddressMaps-master/.gitignore: -------------------------------------------------------------------------------- 1 | Pods 2 | Podfile.lock -------------------------------------------------------------------------------- /Google api and geocoder/GooglePlaces/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Google api and geocoder/GooglePlaces/Podfile -------------------------------------------------------------------------------- /Google api and geocoder/geocoder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Google api and geocoder/geocoder.txt -------------------------------------------------------------------------------- /GradientsReview/GradientsReview/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/GradientsReview/GradientsReview/Info.plist -------------------------------------------------------------------------------- /ImageDownloadsKingfisherSDWebImage/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageDownloadsKingfisherSDWebImage/Podfile -------------------------------------------------------------------------------- /ImageFormat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/.gitignore -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/App/Info.plist -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/ImageFormat.swift -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/Test images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/Test images/1.jpg -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/Test images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/Test images/2.png -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/Test images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/Test images/3.gif -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/Test images/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/Test images/4.svg -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/Test images/5.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/Test images/5.TIF -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/Test images/6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/Test images/6.webp -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/Test images/7.HEIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/Test images/7.HEIC -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/UIImage+HEIC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/UIImage+HEIC.swift -------------------------------------------------------------------------------- /ImageFormat/ImageFormat/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/ImageFormat/ViewController.swift -------------------------------------------------------------------------------- /ImageFormat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImageFormat/README.md -------------------------------------------------------------------------------- /ImagesLocal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesLocal/.gitignore -------------------------------------------------------------------------------- /ImagesLocal/Images.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesLocal/Images.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ImagesLocal/Images/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesLocal/Images/App/AppDelegate.swift -------------------------------------------------------------------------------- /ImagesLocal/Images/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesLocal/Images/App/Info.plist -------------------------------------------------------------------------------- /ImagesObjc/ImagesObjc/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesObjc/ImagesObjc/AppDelegate.h -------------------------------------------------------------------------------- /ImagesObjc/ImagesObjc/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesObjc/ImagesObjc/AppDelegate.m -------------------------------------------------------------------------------- /ImagesObjc/ImagesObjc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesObjc/ImagesObjc/Info.plist -------------------------------------------------------------------------------- /ImagesObjc/ImagesObjc/PhotoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesObjc/ImagesObjc/PhotoCell.h -------------------------------------------------------------------------------- /ImagesObjc/ImagesObjc/PhotoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesObjc/ImagesObjc/PhotoCell.m -------------------------------------------------------------------------------- /ImagesObjc/ImagesObjc/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesObjc/ImagesObjc/ViewController.h -------------------------------------------------------------------------------- /ImagesObjc/ImagesObjc/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesObjc/ImagesObjc/ViewController.m -------------------------------------------------------------------------------- /ImagesObjc/ImagesObjc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesObjc/ImagesObjc/main.m -------------------------------------------------------------------------------- /ImagesSwift/ImagesSwift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesSwift/ImagesSwift/AppDelegate.swift -------------------------------------------------------------------------------- /ImagesSwift/ImagesSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesSwift/ImagesSwift/Info.plist -------------------------------------------------------------------------------- /ImagesSwift/ImagesSwift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ImagesSwift/ImagesSwift/ViewController.swift -------------------------------------------------------------------------------- /InfoPlistSecure/InfoPlistSecure/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InfoPlistSecure/InfoPlistSecure/Info.plist -------------------------------------------------------------------------------- /InfoPlistSecure/InfoPlistSecure/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InfoPlistSecure/InfoPlistSecure/main.swift -------------------------------------------------------------------------------- /InfoPlistSecure/Some1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InfoPlistSecure/Some1/Info.plist -------------------------------------------------------------------------------- /InfoPlistSecure/Some1/Some1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InfoPlistSecure/Some1/Some1.h -------------------------------------------------------------------------------- /InitSwift.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InitSwift.playground/Contents.swift -------------------------------------------------------------------------------- /InitSwift.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InitSwift.playground/contents.xcplayground -------------------------------------------------------------------------------- /InjectionTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InjectionTest/.gitignore -------------------------------------------------------------------------------- /InjectionTest/InjectionTest/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InjectionTest/InjectionTest/App/Info.plist -------------------------------------------------------------------------------- /InjectionTest/InjectionTest/App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InjectionTest/InjectionTest/App/main.m -------------------------------------------------------------------------------- /InjectionTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InjectionTest/README.md -------------------------------------------------------------------------------- /InputView/InputView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InputView/InputView/AppDelegate.swift -------------------------------------------------------------------------------- /InputView/InputView/DatePickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InputView/InputView/DatePickerView.swift -------------------------------------------------------------------------------- /InputView/InputView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InputView/InputView/Info.plist -------------------------------------------------------------------------------- /InputView/InputView/InputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InputView/InputView/InputView.swift -------------------------------------------------------------------------------- /InputView/InputView/KeyboardInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InputView/InputView/KeyboardInputView.swift -------------------------------------------------------------------------------- /InputView/InputView/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InputView/InputView/SceneDelegate.swift -------------------------------------------------------------------------------- /InputView/InputView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/InputView/InputView/ViewController.swift -------------------------------------------------------------------------------- /JailbreakChecker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/JailbreakChecker/.gitignore -------------------------------------------------------------------------------- /JsonDecoding/JsonDecoding/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/JsonDecoding/JsonDecoding/AppDelegate.swift -------------------------------------------------------------------------------- /JsonDecoding/JsonDecoding/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/JsonDecoding/JsonDecoding/Info.plist -------------------------------------------------------------------------------- /KeyboardHideManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/.gitignore -------------------------------------------------------------------------------- /KeyboardHideManager/.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /KeyboardHideManager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/CHANGELOG.md -------------------------------------------------------------------------------- /KeyboardHideManager/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/LICENSE.md -------------------------------------------------------------------------------- /KeyboardHideManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/README.md -------------------------------------------------------------------------------- /KeyboardHideManager/Resources/kdpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/Resources/kdpv.png -------------------------------------------------------------------------------- /KeyboardHideManager/Resources/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/Resources/object.png -------------------------------------------------------------------------------- /KeyboardHideManager/Resources/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/Resources/preview.png -------------------------------------------------------------------------------- /KeyboardHideManager/Resources/usage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/Resources/usage_1.png -------------------------------------------------------------------------------- /KeyboardHideManager/Resources/usage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/Resources/usage_2.png -------------------------------------------------------------------------------- /KeyboardHideManager/Resources/usage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/Resources/usage_3.png -------------------------------------------------------------------------------- /KeyboardHideManager/Settings/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/Settings/Info.plist -------------------------------------------------------------------------------- /KeyboardHideManager/SettingsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeyboardHideManager/SettingsTests/Info.plist -------------------------------------------------------------------------------- /KeychainManager/KeychainManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/KeychainManager/KeychainManager/Info.plist -------------------------------------------------------------------------------- /LightControllers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/LightControllers/.gitignore -------------------------------------------------------------------------------- /LocalizationInspectable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/LocalizationInspectable/.gitignore -------------------------------------------------------------------------------- /LocalizationInspectable/LocalizationInspectable/App/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "hello" = "Привет"; 2 | -------------------------------------------------------------------------------- /LocalizationManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/LocalizationManager/.gitignore -------------------------------------------------------------------------------- /LocationManager/LocationManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/LocationManager/LocationManager/Info.plist -------------------------------------------------------------------------------- /Logger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/.gitignore -------------------------------------------------------------------------------- /Logger/Logger.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/Logger.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Logger/Logger/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/Logger/AppDelegate.swift -------------------------------------------------------------------------------- /Logger/Logger/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/Logger/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Logger/Logger/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/Logger/Info.plist -------------------------------------------------------------------------------- /Logger/Logger/Logger/AlamofireLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/Logger/Logger/AlamofireLogger.swift -------------------------------------------------------------------------------- /Logger/Logger/Logger/Dispatch+Current.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/Logger/Logger/Dispatch+Current.swift -------------------------------------------------------------------------------- /Logger/Logger/Logger/Logger+Realm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/Logger/Logger/Logger+Realm.swift -------------------------------------------------------------------------------- /Logger/Logger/Logger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/Logger/Logger/Logger.swift -------------------------------------------------------------------------------- /Logger/Logger/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Logger/Logger/ViewController.swift -------------------------------------------------------------------------------- /LottieTest/LottieTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/LottieTest/LottieTest/AppDelegate.swift -------------------------------------------------------------------------------- /LottieTest/LottieTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/LottieTest/LottieTest/Info.plist -------------------------------------------------------------------------------- /LottieTest/LottieTest/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/LottieTest/LottieTest/SceneDelegate.swift -------------------------------------------------------------------------------- /LottieTest/LottieTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/LottieTest/LottieTest/ViewController.swift -------------------------------------------------------------------------------- /MVC/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/.gitignore -------------------------------------------------------------------------------- /MVC/MVC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/MVC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MVC/MVC/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/MVC/App/AppDelegate.swift -------------------------------------------------------------------------------- /MVC/MVC/App/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/MVC/App/BaseViewController.swift -------------------------------------------------------------------------------- /MVC/MVC/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/MVC/App/Info.plist -------------------------------------------------------------------------------- /MVC/MVC/Controller/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/MVC/Controller/LoginViewController.swift -------------------------------------------------------------------------------- /MVC/MVC/Model/LoginCredentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/MVC/Model/LoginCredentials.swift -------------------------------------------------------------------------------- /MVC/MVC/View/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/MVC/View/LoginView.swift -------------------------------------------------------------------------------- /MVC/MVC/View/LoginView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/MVC/View/LoginView.xib -------------------------------------------------------------------------------- /MVC/MVC/View/LoginViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MVC/MVC/View/LoginViewDelegate.swift -------------------------------------------------------------------------------- /MagnifyView/MagnifyView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MagnifyView/MagnifyView/AppDelegate.swift -------------------------------------------------------------------------------- /MagnifyView/MagnifyView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MagnifyView/MagnifyView/Info.plist -------------------------------------------------------------------------------- /MagnifyView/MagnifyView/MagnifyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MagnifyView/MagnifyView/MagnifyView.swift -------------------------------------------------------------------------------- /MagnifyView/MagnifyView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MagnifyView/MagnifyView/ViewController.swift -------------------------------------------------------------------------------- /MainQueue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MainQueue/.gitignore -------------------------------------------------------------------------------- /MainQueue/MainQueue/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MainQueue/MainQueue/App/AppDelegate.swift -------------------------------------------------------------------------------- /MainQueue/MainQueue/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MainQueue/MainQueue/App/Info.plist -------------------------------------------------------------------------------- /MainQueue/MainQueue/DispatchQueue+Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MainQueue/MainQueue/DispatchQueue+Main.swift -------------------------------------------------------------------------------- /MainQueue/MainQueue/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MainQueue/MainQueue/ViewController.swift -------------------------------------------------------------------------------- /MainThreadGuard/MainThreadGuard/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MainThreadGuard/MainThreadGuard/Info.plist -------------------------------------------------------------------------------- /MapKitTest/MapKitTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MapKitTest/MapKitTest/AppDelegate.swift -------------------------------------------------------------------------------- /MapKitTest/MapKitTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MapKitTest/MapKitTest/Info.plist -------------------------------------------------------------------------------- /MapKitTest/MapKitTest/MapViewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MapKitTest/MapKitTest/MapViewManager.swift -------------------------------------------------------------------------------- /MapKitTest/MapKitTest/PlacesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MapKitTest/MapKitTest/PlacesController.swift -------------------------------------------------------------------------------- /MapKitTest/MapKitTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MapKitTest/MapKitTest/ViewController.swift -------------------------------------------------------------------------------- /MemoryLayout.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MemoryLayout.playground/Contents.swift -------------------------------------------------------------------------------- /MemoryTests/MemoryTests/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MemoryTests/MemoryTests/App/Info.plist -------------------------------------------------------------------------------- /MemoryTests/MemoryTests/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MemoryTests/MemoryTests/ViewController.swift -------------------------------------------------------------------------------- /MenuDouble3/MenuDouble3/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MenuDouble3/MenuDouble3/AppDelegate.swift -------------------------------------------------------------------------------- /MenuDouble3/MenuDouble3/Controllers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MenuDouble3/MenuDouble3/Controllers.swift -------------------------------------------------------------------------------- /MenuDouble3/MenuDouble3/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MenuDouble3/MenuDouble3/Info.plist -------------------------------------------------------------------------------- /MenuDouble3/MenuDouble3/MenuPanGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MenuDouble3/MenuDouble3/MenuPanGesture.swift -------------------------------------------------------------------------------- /MenuDouble3/MenuDouble3/SetMenuSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MenuDouble3/MenuDouble3/SetMenuSegue.swift -------------------------------------------------------------------------------- /MenuDouble3/MenuDouble3/UIView+Parent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MenuDouble3/MenuDouble3/UIView+Parent.swift -------------------------------------------------------------------------------- /MetalTest/MetalTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MetalTest/MetalTest/AppDelegate.swift -------------------------------------------------------------------------------- /MetalTest/MetalTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MetalTest/MetalTest/Info.plist -------------------------------------------------------------------------------- /MetalTest/MetalTest/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MetalTest/MetalTest/Shaders.metal -------------------------------------------------------------------------------- /MetalTest/MetalTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/MetalTest/MetalTest/ViewController.swift -------------------------------------------------------------------------------- /NavigationBasic/NavigationBasic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/NavigationBasic/NavigationBasic/Info.plist -------------------------------------------------------------------------------- /NavigationPopup/NavigationPopup/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/NavigationPopup/NavigationPopup/Info.plist -------------------------------------------------------------------------------- /NextTextField/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/NextTextField/.gitignore -------------------------------------------------------------------------------- /NextTextField/NextTextField/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/NextTextField/NextTextField/App/Info.plist -------------------------------------------------------------------------------- /NoBreakWordWrap/NoBreakWordWrap/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/NoBreakWordWrap/NoBreakWordWrap/Info.plist -------------------------------------------------------------------------------- /Notes/Notes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Notes/Notes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Notes/Notes/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Notes/Notes/AppDelegate.swift -------------------------------------------------------------------------------- /Notes/Notes/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Notes/Notes/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Notes/Notes/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Notes/Notes/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Notes/Notes/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Notes/Notes/DetailViewController.swift -------------------------------------------------------------------------------- /Notes/Notes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Notes/Notes/Info.plist -------------------------------------------------------------------------------- /Notes/Notes/MasterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Notes/Notes/MasterViewController.swift -------------------------------------------------------------------------------- /Notes/Notes/Notes.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Notes/Notes/Notes.entitlements -------------------------------------------------------------------------------- /Notes/Notes/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Notes/Notes/SceneDelegate.swift -------------------------------------------------------------------------------- /NotificationPush/NotificationPush/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/NotificationPush/NotificationPush/Info.plist -------------------------------------------------------------------------------- /OCRManager/OCRManager/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OCRManager/OCRManager/AppDelegate.swift -------------------------------------------------------------------------------- /OCRManager/OCRManager/CameraManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OCRManager/OCRManager/CameraManager.swift -------------------------------------------------------------------------------- /OCRManager/OCRManager/DocumentScanner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OCRManager/OCRManager/DocumentScanner.swift -------------------------------------------------------------------------------- /OCRManager/OCRManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OCRManager/OCRManager/Info.plist -------------------------------------------------------------------------------- /OCRManager/OCRManager/OCRManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OCRManager/OCRManager/OCRManager.swift -------------------------------------------------------------------------------- /OCRManager/OCRManager/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OCRManager/OCRManager/SceneDelegate.swift -------------------------------------------------------------------------------- /OCRManager/OCRManager/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OCRManager/OCRManager/ViewController.swift -------------------------------------------------------------------------------- /OptIn/OptIn.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OptIn/OptIn.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OptIn/OptIn/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OptIn/OptIn/AppDelegate.swift -------------------------------------------------------------------------------- /OptIn/OptIn/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OptIn/OptIn/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /OptIn/OptIn/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OptIn/OptIn/Info.plist -------------------------------------------------------------------------------- /OptIn/OptIn/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OptIn/OptIn/ViewController.swift -------------------------------------------------------------------------------- /Optionals/Optionals/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Optionals/Optionals/AppDelegate.swift -------------------------------------------------------------------------------- /Optionals/Optionals/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Optionals/Optionals/Info.plist -------------------------------------------------------------------------------- /Optionals/Optionals/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Optionals/Optionals/ViewController.swift -------------------------------------------------------------------------------- /Optionals/OptionalsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Optionals/OptionalsTests/Info.plist -------------------------------------------------------------------------------- /OrientationManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OrientationManager/.gitignore -------------------------------------------------------------------------------- /OrientationManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/OrientationManager/README.md -------------------------------------------------------------------------------- /Passcode/Passcode.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Passcode/Passcode/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode/AppDelegate.swift -------------------------------------------------------------------------------- /Passcode/Passcode/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Passcode/Passcode/Classes/FromNib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode/Classes/FromNib.swift -------------------------------------------------------------------------------- /Passcode/Passcode/Classes/PasscodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode/Classes/PasscodeView.swift -------------------------------------------------------------------------------- /Passcode/Passcode/Classes/PasscodeView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode/Classes/PasscodeView.xib -------------------------------------------------------------------------------- /Passcode/Passcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode/Info.plist -------------------------------------------------------------------------------- /Passcode/Passcode/PasscodeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode/PasscodeController.swift -------------------------------------------------------------------------------- /Passcode/Passcode/PasscodeManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode/PasscodeManager.swift -------------------------------------------------------------------------------- /Passcode/Passcode/VC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Passcode/Passcode/VC.swift -------------------------------------------------------------------------------- /PasswordAutoFill/PasswordAutoFill/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/PasswordAutoFill/PasswordAutoFill/Info.plist -------------------------------------------------------------------------------- /PerformanceTests/PerformanceTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/PerformanceTests/PerformanceTests/Info.plist -------------------------------------------------------------------------------- /PresentDismissVC/PresentVC/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/PresentDismissVC/PresentVC/AppDelegate.swift -------------------------------------------------------------------------------- /PresentDismissVC/PresentVC/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/PresentDismissVC/PresentVC/Info.plist -------------------------------------------------------------------------------- /ProductsList/ProductsList/App/Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/ProductsList/App/Images.swift -------------------------------------------------------------------------------- /ProductsList/ProductsList/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/ProductsList/App/Info.plist -------------------------------------------------------------------------------- /ProductsList/ProductsList/App/L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/ProductsList/App/L10n.swift -------------------------------------------------------------------------------- /ProductsList/ProductsList/App/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | "created_date" = "Дата Создания"; 2 | -------------------------------------------------------------------------------- /ProductsList/ProductsList/App/todo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/ProductsList/App/todo.swift -------------------------------------------------------------------------------- /ProductsList/ProductsList/Logic/URLs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/ProductsList/Logic/URLs.swift -------------------------------------------------------------------------------- /ProductsList/ProductsListTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/ProductsListTests/Info.plist -------------------------------------------------------------------------------- /ProductsList/ProductsListUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/ProductsListUITests/Info.plist -------------------------------------------------------------------------------- /ProductsList/Scripts/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/Scripts/.swiftlint.yml -------------------------------------------------------------------------------- /ProductsList/Scripts/swiftgen_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/Scripts/swiftgen_images.sh -------------------------------------------------------------------------------- /ProductsList/Scripts/swiftgen_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/Scripts/swiftgen_strings.sh -------------------------------------------------------------------------------- /ProductsList/Scripts/swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/Scripts/swiftlint.sh -------------------------------------------------------------------------------- /ProductsList/Scripts/unused.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProductsList/Scripts/unused.rb -------------------------------------------------------------------------------- /ProgressSlider/ProgressSlider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProgressSlider/ProgressSlider/Info.plist -------------------------------------------------------------------------------- /ProximitySensor/ProximitySensor/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ProximitySensor/ProximitySensor/Info.plist -------------------------------------------------------------------------------- /PullToRefreshTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/PullToRefreshTest/.gitignore -------------------------------------------------------------------------------- /PullToRefreshTest/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/PullToRefreshTest/Podfile -------------------------------------------------------------------------------- /PullToRefreshTest/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/PullToRefreshTest/Podfile.lock -------------------------------------------------------------------------------- /QRScanner/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '9.0' 2 | use_frameworks! 3 | 4 | target 'QRScanner' do 5 | 6 | pod 'ZXingObjC', '~> 3.2.2' 7 | 8 | end 9 | -------------------------------------------------------------------------------- /QRScanner/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/QRScanner/Podfile.lock -------------------------------------------------------------------------------- /QRScanner/QRScanner/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/QRScanner/QRScanner/App/AppDelegate.swift -------------------------------------------------------------------------------- /QRScanner/QRScanner/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/QRScanner/QRScanner/App/Info.plist -------------------------------------------------------------------------------- /RaisedTabBar/RaisedTabBar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RaisedTabBar/RaisedTabBar/AppDelegate.swift -------------------------------------------------------------------------------- /RaisedTabBar/RaisedTabBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RaisedTabBar/RaisedTabBar/Info.plist -------------------------------------------------------------------------------- /Reachability/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Reachability/Podfile -------------------------------------------------------------------------------- /Reachability/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Reachability/Podfile.lock -------------------------------------------------------------------------------- /Reachability/Reachability/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Reachability/Reachability/AppDelegate.swift -------------------------------------------------------------------------------- /Reachability/Reachability/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Reachability/Reachability/Info.plist -------------------------------------------------------------------------------- /RealmInvalidGuardStorage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RealmInvalidGuardStorage/.gitignore -------------------------------------------------------------------------------- /RealmInvalidGuardStorage/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RealmInvalidGuardStorage/Podfile -------------------------------------------------------------------------------- /RealmInvalidGuardStorage/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RealmInvalidGuardStorage/Podfile.lock -------------------------------------------------------------------------------- /RealmTests/RealmTests/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RealmTests/RealmTests/AppDelegate.swift -------------------------------------------------------------------------------- /RealmTests/RealmTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RealmTests/RealmTests/Info.plist -------------------------------------------------------------------------------- /RealmTests/RealmTests/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RealmTests/RealmTests/SceneDelegate.swift -------------------------------------------------------------------------------- /RealmTests/RealmTests/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RealmTests/RealmTests/ViewController.swift -------------------------------------------------------------------------------- /ResponderChain/ResponderChain/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ResponderChain/ResponderChain/Info.plist -------------------------------------------------------------------------------- /RestRealmProtocols/Networking/Entity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RestRealmProtocols/Networking/Entity.swift -------------------------------------------------------------------------------- /RestRealmProtocols/Networking/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RestRealmProtocols/Networking/Info.plist -------------------------------------------------------------------------------- /RestRealmProtocols/Networking/Post.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RestRealmProtocols/Networking/Post.swift -------------------------------------------------------------------------------- /RestRealmProtocols/Networking/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RestRealmProtocols/Networking/Router.swift -------------------------------------------------------------------------------- /RestRealmProtocols/Networking/Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RestRealmProtocols/Networking/Token.swift -------------------------------------------------------------------------------- /RestRealmProtocols/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RestRealmProtocols/Podfile -------------------------------------------------------------------------------- /RestRealmProtocols/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RestRealmProtocols/Podfile.lock -------------------------------------------------------------------------------- /Router/Router.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Router/Router.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Router/Router/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Router/Router/AppDelegate.swift -------------------------------------------------------------------------------- /Router/Router/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Router/Router/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Router/Router/Controllers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Router/Router/Controllers.swift -------------------------------------------------------------------------------- /Router/Router/Factory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Router/Router/Factory.swift -------------------------------------------------------------------------------- /Router/Router/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Router/Router/Info.plist -------------------------------------------------------------------------------- /Router/Router/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Router/Router/Router.swift -------------------------------------------------------------------------------- /RunLoop/RunLoop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RunLoop/RunLoop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RunLoop/RunLoop/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RunLoop/RunLoop/AppDelegate.swift -------------------------------------------------------------------------------- /RunLoop/RunLoop/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RunLoop/RunLoop/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RunLoop/RunLoop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RunLoop/RunLoop/Info.plist -------------------------------------------------------------------------------- /RunLoop/RunLoop/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RunLoop/RunLoop/ViewController.swift -------------------------------------------------------------------------------- /RxSwiftStart/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RxSwiftStart/Podfile -------------------------------------------------------------------------------- /RxSwiftStart/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RxSwiftStart/Podfile.lock -------------------------------------------------------------------------------- /RxSwiftStart/RxSwiftStart/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RxSwiftStart/RxSwiftStart/AppDelegate.swift -------------------------------------------------------------------------------- /RxSwiftStart/RxSwiftStart/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/RxSwiftStart/RxSwiftStart/Info.plist -------------------------------------------------------------------------------- /SamsungTV/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SamsungTV/Podfile -------------------------------------------------------------------------------- /SamsungTV/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SamsungTV/Podfile.lock -------------------------------------------------------------------------------- /SamsungTV/SamsungTV/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SamsungTV/SamsungTV/AppDelegate.swift -------------------------------------------------------------------------------- /SamsungTV/SamsungTV/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SamsungTV/SamsungTV/Info.plist -------------------------------------------------------------------------------- /SamsungTV/SamsungTV/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SamsungTV/SamsungTV/ViewController.swift -------------------------------------------------------------------------------- /ScriptsTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/.gitignore -------------------------------------------------------------------------------- /ScriptsTest/.iblinter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/.iblinter.yml -------------------------------------------------------------------------------- /ScriptsTest/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/.swiftlint.yml -------------------------------------------------------------------------------- /ScriptsTest/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Gemfile -------------------------------------------------------------------------------- /ScriptsTest/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Gemfile.lock -------------------------------------------------------------------------------- /ScriptsTest/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Podfile -------------------------------------------------------------------------------- /ScriptsTest/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Podfile.lock -------------------------------------------------------------------------------- /ScriptsTest/Scripts/AbandonedStrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/AbandonedStrings -------------------------------------------------------------------------------- /ScriptsTest/Scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/README.txt -------------------------------------------------------------------------------- /ScriptsTest/Scripts/abandoned_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/abandoned_strings.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/alias.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/carthage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/carthage.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/constraintClean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/constraintClean -------------------------------------------------------------------------------- /ScriptsTest/Scripts/constraintClean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/constraintClean.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/ibanalyzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/ibanalyzer.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/iblinter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/iblinter.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/localization_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/localization_check -------------------------------------------------------------------------------- /ScriptsTest/Scripts/localization_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/localization_check.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/pngcrush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/pngcrush.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/pngcrush_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/pngcrush_result.txt -------------------------------------------------------------------------------- /ScriptsTest/Scripts/swiftgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/swiftgen.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/swiftlint.sh -------------------------------------------------------------------------------- /ScriptsTest/Scripts/unused.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/Scripts/unused.rb -------------------------------------------------------------------------------- /ScriptsTest/ScriptsTest/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/ScriptsTest/App/Info.plist -------------------------------------------------------------------------------- /ScriptsTest/ScriptsTest/Resources/L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/ScriptsTest/Resources/L10n.swift -------------------------------------------------------------------------------- /ScriptsTest/ScriptsTest/SomeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/ScriptsTest/SomeController.swift -------------------------------------------------------------------------------- /ScriptsTest/ScriptsTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/ScriptsTest/ViewController.swift -------------------------------------------------------------------------------- /ScriptsTest/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScriptsTest/install -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/App/AppDelegate.swift -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/App/Info.plist -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/ScrollBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/ScrollBar.swift -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/ScrollBarEazy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/ScrollBarEazy.swift -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/ScrollBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/ScrollBarView.swift -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/TextInsetsLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/TextInsetsLabel.swift -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/ViewController.swift -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/YearMonth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/YearMonth.swift -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/YearsSectionIndex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/YearsSectionIndex.swift -------------------------------------------------------------------------------- /ScrollBar/ScrollBar/YearsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ScrollBar/ScrollBar/YearsView.swift -------------------------------------------------------------------------------- /Settings/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/.swiftlint.yml -------------------------------------------------------------------------------- /Settings/Scripts/swiftgen_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Scripts/swiftgen_images.sh -------------------------------------------------------------------------------- /Settings/Scripts/swiftgen_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Scripts/swiftgen_strings.sh -------------------------------------------------------------------------------- /Settings/Scripts/swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Scripts/swiftlint.sh -------------------------------------------------------------------------------- /Settings/Settings.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Settings/Settings/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/App/AppDelegate.swift -------------------------------------------------------------------------------- /Settings/Settings/App/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/App/Constants.swift -------------------------------------------------------------------------------- /Settings/Settings/App/Images.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/App/Images.swift -------------------------------------------------------------------------------- /Settings/Settings/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/App/Info.plist -------------------------------------------------------------------------------- /Settings/Settings/App/L10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/App/L10n.swift -------------------------------------------------------------------------------- /Settings/Settings/App/MainApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/App/MainApplication.swift -------------------------------------------------------------------------------- /Settings/Settings/App/NonL10n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/App/NonL10n.swift -------------------------------------------------------------------------------- /Settings/Settings/App/ShortcutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/App/ShortcutManager.swift -------------------------------------------------------------------------------- /Settings/Settings/App/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/App/main.swift -------------------------------------------------------------------------------- /Settings/Settings/Classes/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Classes/Device.swift -------------------------------------------------------------------------------- /Settings/Settings/Classes/RateCounter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Classes/RateCounter.swift -------------------------------------------------------------------------------- /Settings/Settings/Extensions/Text+Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Extensions/Text+Size.swift -------------------------------------------------------------------------------- /Settings/Settings/Floating/Floating.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Floating/Floating.swift -------------------------------------------------------------------------------- /Settings/Settings/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Main.storyboard -------------------------------------------------------------------------------- /Settings/Settings/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Result.swift -------------------------------------------------------------------------------- /Settings/Settings/Views/AboutHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Views/AboutHeader.swift -------------------------------------------------------------------------------- /Settings/Settings/Views/DetailCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Views/DetailCell.swift -------------------------------------------------------------------------------- /Settings/Settings/Views/DetailCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Views/DetailCell.xib -------------------------------------------------------------------------------- /Settings/Settings/Views/InsetImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/Settings/Views/InsetImageView.swift -------------------------------------------------------------------------------- /Settings/SettingsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/SettingsTests/Info.plist -------------------------------------------------------------------------------- /Settings/SettingsTests/SettingsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Settings/SettingsTests/SettingsTests.swift -------------------------------------------------------------------------------- /SettingsBundle/SettingsTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SettingsBundle/SettingsTest/Info.plist -------------------------------------------------------------------------------- /SideMenu1(SWReveal)/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SideMenu1(SWReveal)/Podfile -------------------------------------------------------------------------------- /SideMenu1(SWReveal)/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SideMenu1(SWReveal)/Podfile.lock -------------------------------------------------------------------------------- /SideMenu1(SWReveal)/SideMenu1/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SideMenu1(SWReveal)/SideMenu1/Info.plist -------------------------------------------------------------------------------- /SideMenu2(SlideMenu)/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SideMenu2(SlideMenu)/Podfile -------------------------------------------------------------------------------- /SideMenu2(SlideMenu)/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SideMenu2(SlideMenu)/Podfile.lock -------------------------------------------------------------------------------- /SideMenu2(SlideMenu)/SideMenu2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SideMenu2(SlideMenu)/SideMenu2/Info.plist -------------------------------------------------------------------------------- /SpotifyApiTest/SpotifyApiTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SpotifyApiTest/SpotifyApiTest/Info.plist -------------------------------------------------------------------------------- /SpotifyApiTest/SpotifyApiTest/SpotifyiOS.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /SpotifyApiTest/SpotifyApiTest/SpotifyiOS.framework/SpotifyiOS: -------------------------------------------------------------------------------- 1 | Versions/Current/SpotifyiOS -------------------------------------------------------------------------------- /SpotifyApiTest/SpotifyApiTest/SpotifyiOS.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Spotlight/Spotlight/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Spotlight/Spotlight/AppDelegate.swift -------------------------------------------------------------------------------- /Spotlight/Spotlight/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Spotlight/Spotlight/Info.plist -------------------------------------------------------------------------------- /Spotlight/Spotlight/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Spotlight/Spotlight/SceneDelegate.swift -------------------------------------------------------------------------------- /Spotlight/Spotlight/SpotlightManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Spotlight/Spotlight/SpotlightManager.swift -------------------------------------------------------------------------------- /Spotlight/Spotlight/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Spotlight/Spotlight/ViewController.swift -------------------------------------------------------------------------------- /Spotlight/SpotlightExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Spotlight/SpotlightExtension/Info.plist -------------------------------------------------------------------------------- /StatusBarManager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/StatusBarManager/.gitignore -------------------------------------------------------------------------------- /StatusBarTap/StatusBarTap/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/StatusBarTap/StatusBarTap/AppDelegate.swift -------------------------------------------------------------------------------- /StatusBarTap/StatusBarTap/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/StatusBarTap/StatusBarTap/Info.plist -------------------------------------------------------------------------------- /SwiftBest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SwiftBest.zip -------------------------------------------------------------------------------- /SwizzlingSwift/SwizzlingSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/SwizzlingSwift/SwizzlingSwift/Info.plist -------------------------------------------------------------------------------- /TableViewTests/TableViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TableViewTests/TableViewTests/Info.plist -------------------------------------------------------------------------------- /Tetris/Tetris.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Tetris/Tetris.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tetris/Tetris/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Tetris/Tetris/AppDelegate.swift -------------------------------------------------------------------------------- /Tetris/Tetris/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Tetris/Tetris/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Tetris/Tetris/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Tetris/Tetris/Info.plist -------------------------------------------------------------------------------- /TextInputBar/TextInputBar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TextInputBar/TextInputBar/AppDelegate.swift -------------------------------------------------------------------------------- /TextInputBar/TextInputBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TextInputBar/TextInputBar/Info.plist -------------------------------------------------------------------------------- /TextInputBar/TextInputBar/TextInputBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TextInputBar/TextInputBar/TextInputBar.swift -------------------------------------------------------------------------------- /TextInputBar/TextInputBar/TextInputBar.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TextInputBar/TextInputBar/TextInputBar.xib -------------------------------------------------------------------------------- /TextInputBar/TextInputBar/UserChatCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TextInputBar/TextInputBar/UserChatCell.swift -------------------------------------------------------------------------------- /TextInputBar/TextInputBar/UserChatCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TextInputBar/TextInputBar/UserChatCell.xib -------------------------------------------------------------------------------- /TimeMeasurer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TimeMeasurer/.gitignore -------------------------------------------------------------------------------- /TimeMeasurer/TimeMeasurer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TimeMeasurer/TimeMeasurer/AppDelegate.swift -------------------------------------------------------------------------------- /TimeMeasurer/TimeMeasurer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TimeMeasurer/TimeMeasurer/Info.plist -------------------------------------------------------------------------------- /TimeMeasurer/TimeMeasurer/TimeMeasurer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TimeMeasurer/TimeMeasurer/TimeMeasurer.swift -------------------------------------------------------------------------------- /Timer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Timer/.gitignore -------------------------------------------------------------------------------- /Timer/Timer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Timer/Timer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Timer/Timer/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Timer/Timer/App/AppDelegate.swift -------------------------------------------------------------------------------- /Timer/Timer/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Timer/Timer/App/Info.plist -------------------------------------------------------------------------------- /Timer/Timer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Timer/Timer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Timer/Timer/CountdownTimer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Timer/Timer/CountdownTimer.swift -------------------------------------------------------------------------------- /Timer/Timer/TimerLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Timer/Timer/TimerLabel.swift -------------------------------------------------------------------------------- /Timer/Timer/TimerWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Timer/Timer/TimerWrapper.swift -------------------------------------------------------------------------------- /Timer/Timer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Timer/Timer/ViewController.swift -------------------------------------------------------------------------------- /TodayExtensionTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TodayExtensionTest/.gitignore -------------------------------------------------------------------------------- /TorchManager/TorchManager/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TorchManager/TorchManager/AppDelegate.swift -------------------------------------------------------------------------------- /TorchManager/TorchManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TorchManager/TorchManager/Info.plist -------------------------------------------------------------------------------- /TorchManager/TorchManager/TorchManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TorchManager/TorchManager/TorchManager.swift -------------------------------------------------------------------------------- /TouchBarTest/TouchBarTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TouchBarTest/TouchBarTest/AppDelegate.swift -------------------------------------------------------------------------------- /TouchBarTest/TouchBarTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TouchBarTest/TouchBarTest/Info.plist -------------------------------------------------------------------------------- /TouchBarTest/TouchBarTest/TouchBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/TouchBarTest/TouchBarTest/TouchBar.h -------------------------------------------------------------------------------- /Transitions/Transitions/Animator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Transitions/Transitions/Animator.swift -------------------------------------------------------------------------------- /Transitions/Transitions/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Transitions/Transitions/AppDelegate.swift -------------------------------------------------------------------------------- /Transitions/Transitions/FlipAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Transitions/Transitions/FlipAnimator.swift -------------------------------------------------------------------------------- /Transitions/Transitions/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Transitions/Transitions/Info.plist -------------------------------------------------------------------------------- /Transitions/Transitions/PushAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Transitions/Transitions/PushAnimator.swift -------------------------------------------------------------------------------- /Transitions/Transitions/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/Transitions/Transitions/ViewController.swift -------------------------------------------------------------------------------- /UIComponents/UIComponents/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/UIComponents/UIComponents/AppDelegate.swift -------------------------------------------------------------------------------- /UIComponents/UIComponents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/UIComponents/UIComponents/Info.plist -------------------------------------------------------------------------------- /UIComponents/UIComponents/Views.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/UIComponents/UIComponents/Views.swift -------------------------------------------------------------------------------- /UIKeyCommandTest/UIKeyCommandTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/UIKeyCommandTest/UIKeyCommandTest/Info.plist -------------------------------------------------------------------------------- /UnitTestsRealm/UnitTestsRealm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/UnitTestsRealm/UnitTestsRealm/Info.plist -------------------------------------------------------------------------------- /UniversalViewer/UniversalViewer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/UniversalViewer/UniversalViewer/Info.plist -------------------------------------------------------------------------------- /VKSwiftyTest/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKSwiftyTest/Cartfile -------------------------------------------------------------------------------- /VKSwiftyTest/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKSwiftyTest/Cartfile.resolved -------------------------------------------------------------------------------- /VKSwiftyTest/VKSwiftyTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKSwiftyTest/VKSwiftyTest/AppDelegate.swift -------------------------------------------------------------------------------- /VKSwiftyTest/VKSwiftyTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKSwiftyTest/VKSwiftyTest/Info.plist -------------------------------------------------------------------------------- /VKSwiftyTest/VKSwiftyTest/VK+URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKSwiftyTest/VKSwiftyTest/VK+URL.swift -------------------------------------------------------------------------------- /VKSwiftyTest/VKSwiftyTest/VKManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKSwiftyTest/VKSwiftyTest/VKManager.swift -------------------------------------------------------------------------------- /VKTest/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/Cartfile -------------------------------------------------------------------------------- /VKTest/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/Cartfile.resolved -------------------------------------------------------------------------------- /VKTest/VKTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/VKTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VKTest/VKTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/VKTest/AppDelegate.swift -------------------------------------------------------------------------------- /VKTest/VKTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/VKTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VKTest/VKTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/VKTest/Info.plist -------------------------------------------------------------------------------- /VKTest/VKTest/UIApplication+Controller.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/VKTest/UIApplication+Controller.swift -------------------------------------------------------------------------------- /VKTest/VKTest/VKManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/VKTest/VKManager.swift -------------------------------------------------------------------------------- /VKTest/VKTest/VKSdk+URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/VKTest/VKSdk+URL.swift -------------------------------------------------------------------------------- /VKTest/VKTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VKTest/VKTest/ViewController.swift -------------------------------------------------------------------------------- /VibrationTest(TapticEngineExample)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/VibrationTest(TapticEngineExample)/README.md -------------------------------------------------------------------------------- /ViperApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/.gitignore -------------------------------------------------------------------------------- /ViperApp/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/.swiftlint.yml -------------------------------------------------------------------------------- /ViperApp/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/Brewfile -------------------------------------------------------------------------------- /ViperApp/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/Cartfile -------------------------------------------------------------------------------- /ViperApp/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/Cartfile.resolved -------------------------------------------------------------------------------- /ViperApp/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/Gemfile -------------------------------------------------------------------------------- /ViperApp/Rambafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/Rambafile -------------------------------------------------------------------------------- /ViperApp/Scripts/carthage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/Scripts/carthage.sh -------------------------------------------------------------------------------- /ViperApp/Scripts/swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/Scripts/swiftlint.sh -------------------------------------------------------------------------------- /ViperApp/ViperApp-Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/ViperApp-Mac/Info.plist -------------------------------------------------------------------------------- /ViperApp/ViperApp-Mac/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/ViperApp-Mac/ViewController.swift -------------------------------------------------------------------------------- /ViperApp/ViperApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/ViperApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViperApp/ViperApp/App/Base/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/ViperApp/App/Base/main.swift -------------------------------------------------------------------------------- /ViperApp/ViperApp/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/ViperApp/App/Info.plist -------------------------------------------------------------------------------- /ViperApp/ViperApp/Buisness/URLs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/ViperApp/Buisness/URLs.swift -------------------------------------------------------------------------------- /ViperApp/ViperApp/Support/Promisable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/ViperApp/Support/Promisable.swift -------------------------------------------------------------------------------- /ViperApp/ViperApp/Support/URL+Path.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperApp/ViperApp/Support/URL+Path.swift -------------------------------------------------------------------------------- /ViperKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperKit/.gitignore -------------------------------------------------------------------------------- /ViperKit/ViperKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperKit/ViperKit.podspec -------------------------------------------------------------------------------- /ViperKit/ViperKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperKit/ViperKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ViperKit/ViperKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperKit/ViperKit/Info.plist -------------------------------------------------------------------------------- /ViperKit/ViperKit/ModuleInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperKit/ViperKit/ModuleInput.swift -------------------------------------------------------------------------------- /ViperKit/ViperKit/ModuleInputProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperKit/ViperKit/ModuleInputProvider.swift -------------------------------------------------------------------------------- /ViperKit/ViperKit/TransitionHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperKit/ViperKit/TransitionHandler.swift -------------------------------------------------------------------------------- /ViperKit/ViperKit/ViperController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperKit/ViperKit/ViperController.swift -------------------------------------------------------------------------------- /ViperKit/ViperKit/ViperKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/ViperKit/ViperKit/ViperKit.h -------------------------------------------------------------------------------- /WeatherApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/.editorconfig -------------------------------------------------------------------------------- /WeatherApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/.gitignore -------------------------------------------------------------------------------- /WeatherApp/.swift-version: -------------------------------------------------------------------------------- 1 | 4.1 2 | ## need for Cocoapods and Swift Version Manager -------------------------------------------------------------------------------- /WeatherApp/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/.swiftlint.yml -------------------------------------------------------------------------------- /WeatherApp/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Brewfile -------------------------------------------------------------------------------- /WeatherApp/Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Cartfile -------------------------------------------------------------------------------- /WeatherApp/Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Cartfile.resolved -------------------------------------------------------------------------------- /WeatherApp/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Gemfile -------------------------------------------------------------------------------- /WeatherApp/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Gemfile.lock -------------------------------------------------------------------------------- /WeatherApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Podfile -------------------------------------------------------------------------------- /WeatherApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Podfile.lock -------------------------------------------------------------------------------- /WeatherApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/README.md -------------------------------------------------------------------------------- /WeatherApp/Scripts/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Scripts/alias.sh -------------------------------------------------------------------------------- /WeatherApp/Scripts/carthage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Scripts/carthage.sh -------------------------------------------------------------------------------- /WeatherApp/Scripts/pngcrush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Scripts/pngcrush.sh -------------------------------------------------------------------------------- /WeatherApp/Scripts/pngcrush_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Scripts/pngcrush_result.txt -------------------------------------------------------------------------------- /WeatherApp/Scripts/swiftgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Scripts/swiftgen.sh -------------------------------------------------------------------------------- /WeatherApp/Scripts/swiftlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/Scripts/swiftlint.sh -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/WeatherApp/App/AppDelegate.swift -------------------------------------------------------------------------------- /WeatherApp/WeatherApp/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/WeatherApp/App/Info.plist -------------------------------------------------------------------------------- /WeatherApp/WeatherAppTests/BaseUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/WeatherAppTests/BaseUITests.swift -------------------------------------------------------------------------------- /WeatherApp/WeatherAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/WeatherAppTests/Info.plist -------------------------------------------------------------------------------- /WeatherApp/WeatherAppTests/XCTest+KIF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/WeatherAppTests/XCTest+KIF.swift -------------------------------------------------------------------------------- /WeatherApp/WeatherAppUITests2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/WeatherAppUITests2/Info.plist -------------------------------------------------------------------------------- /WeatherApp/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/Appfile -------------------------------------------------------------------------------- /WeatherApp/fastlane/Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/Deliverfile -------------------------------------------------------------------------------- /WeatherApp/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/Fastfile -------------------------------------------------------------------------------- /WeatherApp/fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/Matchfile -------------------------------------------------------------------------------- /WeatherApp/fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/Pluginfile -------------------------------------------------------------------------------- /WeatherApp/fastlane/Precheckfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/Precheckfile -------------------------------------------------------------------------------- /WeatherApp/fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/README.md -------------------------------------------------------------------------------- /WeatherApp/fastlane/Snapfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/Snapfile -------------------------------------------------------------------------------- /WeatherApp/fastlane/SnapshotHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/SnapshotHelper.swift -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/metadata/app_icon.png -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/copyright.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/en-US/description.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/en-US/keywords.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/en-US/marketing_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/en-US/name.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/en-US/privacy_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/en-US/release_notes.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/en-US/support_url.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/primary_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/primary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/primary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/review_information/demo_password.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/review_information/demo_user.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/review_information/email_address.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/review_information/first_name.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/review_information/last_name.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/review_information/notes.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/review_information/phone_number.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/secondary_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/secondary_first_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/metadata/secondary_second_sub_category.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WeatherApp/fastlane/testers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/fastlane/testers.csv -------------------------------------------------------------------------------- /WeatherApp/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/install -------------------------------------------------------------------------------- /WeatherApp/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WeatherApp/swiftgen.yml -------------------------------------------------------------------------------- /WindowFloating/WindowFloating/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/WindowFloating/WindowFloating/App/Info.plist -------------------------------------------------------------------------------- /YoutubeView/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/YoutubeView/Podfile -------------------------------------------------------------------------------- /YoutubeView/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/YoutubeView/Podfile.lock -------------------------------------------------------------------------------- /YoutubeView/YoutubeView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/YoutubeView/YoutubeView/AppDelegate.swift -------------------------------------------------------------------------------- /YoutubeView/YoutubeView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/YoutubeView/YoutubeView/Info.plist -------------------------------------------------------------------------------- /YoutubeView/YoutubeView/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/YoutubeView/YoutubeView/SceneDelegate.swift -------------------------------------------------------------------------------- /YoutubeView/YoutubeView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/YoutubeView/YoutubeView/ViewController.swift -------------------------------------------------------------------------------- /_mac/Bluetooth-Keyboard-Emulator/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/Bluetooth-Keyboard-Emulator/LICENSE.md -------------------------------------------------------------------------------- /_mac/Bluetooth-Keyboard-Emulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/Bluetooth-Keyboard-Emulator/README.md -------------------------------------------------------------------------------- /_mac/EmptyProject/EmptyProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/EmptyProject/EmptyProject/Info.plist -------------------------------------------------------------------------------- /_mac/EmptyProject/EmptyProject/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/EmptyProject/EmptyProject/main.swift -------------------------------------------------------------------------------- /_mac/FnLock/FnLock.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/FnLock/FnLock.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /_mac/FnLock/FnLock/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/FnLock/FnLock/AppDelegate.swift -------------------------------------------------------------------------------- /_mac/FnLock/FnLock/FnLock.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/FnLock/FnLock/FnLock.entitlements -------------------------------------------------------------------------------- /_mac/FnLock/FnLock/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/FnLock/FnLock/Info.plist -------------------------------------------------------------------------------- /_mac/FnLock/FnLock/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/FnLock/FnLock/ViewController.swift -------------------------------------------------------------------------------- /_mac/ImageRotator/ImageRotator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/ImageRotator/ImageRotator/Info.plist -------------------------------------------------------------------------------- /_mac/InternHelper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/InternHelper/.gitignore -------------------------------------------------------------------------------- /_mac/InternHelper/InternHelper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/InternHelper/InternHelper/Info.plist -------------------------------------------------------------------------------- /_mac/InternHelper/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/InternHelper/Podfile -------------------------------------------------------------------------------- /_mac/InternHelper/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/InternHelper/Podfile.lock -------------------------------------------------------------------------------- /_mac/LEDsControl/LEDsControl/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/LEDsControl/LEDsControl/Info.plist -------------------------------------------------------------------------------- /_mac/LaunchAtLogin/LaunchAtLogin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/LaunchAtLogin/LaunchAtLogin/Info.plist -------------------------------------------------------------------------------- /_mac/LaunchAtLoginTest/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/LaunchAtLoginTest/Podfile -------------------------------------------------------------------------------- /_mac/LaunchAtLoginTest/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/LaunchAtLoginTest/Podfile.lock -------------------------------------------------------------------------------- /_mac/MacTimer/MacTimer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/MacTimer/AppDelegate.swift -------------------------------------------------------------------------------- /_mac/MacTimer/MacTimer/CollCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/MacTimer/CollCell.swift -------------------------------------------------------------------------------- /_mac/MacTimer/MacTimer/CollCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/MacTimer/CollCell.xib -------------------------------------------------------------------------------- /_mac/MacTimer/MacTimer/CutomCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/MacTimer/CutomCell.swift -------------------------------------------------------------------------------- /_mac/MacTimer/MacTimer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/MacTimer/Info.plist -------------------------------------------------------------------------------- /_mac/MacTimer/MacTimer/LoginController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/MacTimer/LoginController.swift -------------------------------------------------------------------------------- /_mac/MacTimer/MacTimer/SocketIOManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/MacTimer/SocketIOManager.swift -------------------------------------------------------------------------------- /_mac/MacTimer/MacTimer/TimerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/MacTimer/TimerController.swift -------------------------------------------------------------------------------- /_mac/MacTimer/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/Podfile -------------------------------------------------------------------------------- /_mac/MacTimer/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MacTimer/Podfile.lock -------------------------------------------------------------------------------- /_mac/MuteMic/MuteMic/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MuteMic/MuteMic/AppDelegate.swift -------------------------------------------------------------------------------- /_mac/MuteMic/MuteMic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MuteMic/MuteMic/Info.plist -------------------------------------------------------------------------------- /_mac/MuteMic/MuteMic/MuteMic.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MuteMic/MuteMic/MuteMic.entitlements -------------------------------------------------------------------------------- /_mac/MuteMic/MuteMic/MuteMicManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MuteMic/MuteMic/MuteMicManager.swift -------------------------------------------------------------------------------- /_mac/MuteMic/MuteMic/Optional+Assert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MuteMic/MuteMic/Optional+Assert.swift -------------------------------------------------------------------------------- /_mac/MuteMic/MuteMic/StatusItemManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MuteMic/MuteMic/StatusItemManager.swift -------------------------------------------------------------------------------- /_mac/MuteMic/MuteMic/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/MuteMic/MuteMic/main.swift -------------------------------------------------------------------------------- /_mac/VideoPlayer/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/VideoPlayer/Podfile -------------------------------------------------------------------------------- /_mac/VideoPlayer/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/VideoPlayer/Podfile.lock -------------------------------------------------------------------------------- /_mac/VideoPlayer/VideoPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/VideoPlayer/VideoPlayer/Info.plist -------------------------------------------------------------------------------- /_mac/VideoPlayer/VideoPlayer/video_test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_mac/VideoPlayer/VideoPlayer/video_test.mp4 -------------------------------------------------------------------------------- /_objc/CalendarWork/WorkCalendar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/CalendarWork/WorkCalendar/Info.plist -------------------------------------------------------------------------------- /_objc/CalendarWork/WorkCalendar/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/CalendarWork/WorkCalendar/main.m -------------------------------------------------------------------------------- /_objc/Calender/Calender/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/Calender/Calender/AppDelegate.h -------------------------------------------------------------------------------- /_objc/Calender/Calender/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/Calender/Calender/AppDelegate.m -------------------------------------------------------------------------------- /_objc/Calender/Calender/CollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/Calender/Calender/CollectionViewCell.h -------------------------------------------------------------------------------- /_objc/Calender/Calender/CollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/Calender/Calender/CollectionViewCell.m -------------------------------------------------------------------------------- /_objc/Calender/Calender/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/Calender/Calender/Info.plist -------------------------------------------------------------------------------- /_objc/Calender/Calender/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/Calender/Calender/ViewController.h -------------------------------------------------------------------------------- /_objc/Calender/Calender/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/Calender/Calender/ViewController.m -------------------------------------------------------------------------------- /_objc/Calender/Calender/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/Calender/Calender/main.m -------------------------------------------------------------------------------- /_objc/CoreDataObjCTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/CoreDataObjCTest/.gitignore -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTest/ASObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTest/ASObject.h -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTest/ASObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTest/ASObject.m -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTest/AppDelegate.h -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTest/AppDelegate.m -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTest/Info.plist -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTest/ViewController.h -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTest/ViewController.m -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTest/main.m -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTestTests/Info.plist -------------------------------------------------------------------------------- /_objc/DatesTest/DatesTestUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DatesTest/DatesTestUITests/Info.plist -------------------------------------------------------------------------------- /_objc/DrawingsTest/DrawingsTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DrawingsTest/DrawingsTest/Info.plist -------------------------------------------------------------------------------- /_objc/DrawingsTest/DrawingsTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/DrawingsTest/DrawingsTest/main.m -------------------------------------------------------------------------------- /_objc/GesturesTest/GesturesTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/GesturesTest/GesturesTest/Info.plist -------------------------------------------------------------------------------- /_objc/GesturesTest/GesturesTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/GesturesTest/GesturesTest/main.m -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/AppDelegate.h -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/AppDelegate.m -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/CustomNSLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/CustomNSLog.h -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/Info.plist -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/PrefixHeader.pch -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/SynthesizeSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/SynthesizeSingleton.h -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/ViewController.h -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/ViewController.m -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/XXXChild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/XXXChild.h -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/XXXChild.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/XXXChild.m -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/ZZZObject+Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/ZZZObject+Extensions.h -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/ZZZObject+Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/ZZZObject+Extensions.m -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/ZZZObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/ZZZObject.h -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/ZZZObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/ZZZObject.m -------------------------------------------------------------------------------- /_objc/MRCtest/MRCtest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/MRCtest/MRCtest/main.m -------------------------------------------------------------------------------- /_objc/NetworkingObjC/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NetworkingObjC/.gitignore -------------------------------------------------------------------------------- /_objc/NetworkingObjC/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NetworkingObjC/Gemfile -------------------------------------------------------------------------------- /_objc/NetworkingObjC/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NetworkingObjC/Gemfile.lock -------------------------------------------------------------------------------- /_objc/NetworkingObjC/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NetworkingObjC/Podfile -------------------------------------------------------------------------------- /_objc/NetworkingObjC/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NetworkingObjC/Podfile.lock -------------------------------------------------------------------------------- /_objc/NetworkingObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NetworkingObjC/README.md -------------------------------------------------------------------------------- /_objc/NetworkingObjC/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NetworkingObjC/install -------------------------------------------------------------------------------- /_objc/NiblessMac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/Info.plist -------------------------------------------------------------------------------- /_objc/NiblessMac/JJApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/JJApplication.h -------------------------------------------------------------------------------- /_objc/NiblessMac/JJApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/JJApplication.m -------------------------------------------------------------------------------- /_objc/NiblessMac/JJApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/JJApplicationDelegate.h -------------------------------------------------------------------------------- /_objc/NiblessMac/JJApplicationDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/JJApplicationDelegate.m -------------------------------------------------------------------------------- /_objc/NiblessMac/JJBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/JJBundle.h -------------------------------------------------------------------------------- /_objc/NiblessMac/JJBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/JJBundle.m -------------------------------------------------------------------------------- /_objc/NiblessMac/JJMenuPopulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/JJMenuPopulator.h -------------------------------------------------------------------------------- /_objc/NiblessMac/JJMenuPopulator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/JJMenuPopulator.m -------------------------------------------------------------------------------- /_objc/NiblessMac/Nibless_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/Nibless_Prefix.pch -------------------------------------------------------------------------------- /_objc/NiblessMac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/NiblessMac/main.m -------------------------------------------------------------------------------- /_objc/ProductsObjC/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/ProductsObjC/.gitignore -------------------------------------------------------------------------------- /_objc/ProductsObjC/ProductsObjC/App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/ProductsObjC/ProductsObjC/App/main.m -------------------------------------------------------------------------------- /_objc/ProductsObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/ProductsObjC/README.md -------------------------------------------------------------------------------- /_objc/PropertiesObjC/PropertiesObjC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/PropertiesObjC/PropertiesObjC/main.m -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASAppDelegate.h -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASAppDelegate.m -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASPilot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASPilot.h -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASPilot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASPilot.m -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASRobot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASRobot.h -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASRobot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASRobot.m -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASSmart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASSmart.h -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASSmart.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASSmart.m -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASTarget.h -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASTarget.m -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASTestPilot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASTestPilot.h -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/ASTestPilot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/ASTestPilot.m -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/Pilots/VirPilot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/Pilots/VirPilot.h -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/Pilots/VirPilot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/Pilots/VirPilot.m -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/RWPilot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/RWPilot.h -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /_objc/RoboWars/RoboWars/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/RoboWars/RoboWars/main.m -------------------------------------------------------------------------------- /_objc/ScheduleShift/ScheduleShift/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/ScheduleShift/ScheduleShift/main.m -------------------------------------------------------------------------------- /_objc/TouchesTest/TouchesTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/TouchesTest/TouchesTest/Info.plist -------------------------------------------------------------------------------- /_objc/TouchesTest/TouchesTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/TouchesTest/TouchesTest/main.m -------------------------------------------------------------------------------- /_objc/WebViewTest/WebViewTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/WebViewTest/WebViewTest/Info.plist -------------------------------------------------------------------------------- /_objc/WebViewTest/WebViewTest/files/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/WebViewTest/WebViewTest/files/1.txt -------------------------------------------------------------------------------- /_objc/WebViewTest/WebViewTest/files/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/WebViewTest/WebViewTest/files/5.png -------------------------------------------------------------------------------- /_objc/WebViewTest/WebViewTest/files/6.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/WebViewTest/WebViewTest/files/6.rtf -------------------------------------------------------------------------------- /_objc/WebViewTest/WebViewTest/files/7.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/WebViewTest/WebViewTest/files/7.rtf -------------------------------------------------------------------------------- /_objc/WebViewTest/WebViewTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/WebViewTest/WebViewTest/main.m -------------------------------------------------------------------------------- /_objc/macStatusBarMenuObjC/macObjC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc/macStatusBarMenuObjC/macObjC/main.m -------------------------------------------------------------------------------- /_objc_old.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_objc_old.zip -------------------------------------------------------------------------------- /_swiftui/Notes/Notes/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_swiftui/Notes/Notes/AppDelegate.swift -------------------------------------------------------------------------------- /_swiftui/Notes/Notes/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_swiftui/Notes/Notes/ContentView.swift -------------------------------------------------------------------------------- /_swiftui/Notes/Notes/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_swiftui/Notes/Notes/Event.swift -------------------------------------------------------------------------------- /_swiftui/Notes/Notes/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_swiftui/Notes/Notes/Info.plist -------------------------------------------------------------------------------- /_swiftui/Notes/Notes/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/_swiftui/Notes/Notes/SceneDelegate.swift -------------------------------------------------------------------------------- /iPadComponents/iPadComponents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/iPadComponents/iPadComponents/Info.plist -------------------------------------------------------------------------------- /infixOperator.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/infixOperator.playground/Contents.swift -------------------------------------------------------------------------------- /tvOStest/tvOStest/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/tvOStest/tvOStest/App/AppDelegate.swift -------------------------------------------------------------------------------- /tvOStest/tvOStest/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/tvOStest/tvOStest/App/Info.plist -------------------------------------------------------------------------------- /tvOStest/tvOStest/SearchController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/tvOStest/tvOStest/SearchController.swift -------------------------------------------------------------------------------- /tvOStest/tvOStest/TabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/tvOStest/tvOStest/TabBarController.swift -------------------------------------------------------------------------------- /tvOStest/tvOStest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonyadmitr/XcodeProjects/HEAD/tvOStest/tvOStest/ViewController.swift --------------------------------------------------------------------------------