├── .gitignore ├── .travis.yml ├── BetweenKit.podspec ├── Build ├── README.md ├── after_coverage.sh ├── after_mess.sh ├── before_install.sh ├── external │ ├── Coveralls │ │ ├── LICENSE │ │ ├── README.md │ │ └── coveralls.rb │ └── OCLint │ │ ├── LICENSE │ │ ├── bin │ │ ├── oclint │ │ ├── oclint-0.8.1 │ │ ├── oclint-json-compilation-database │ │ └── oclint-xcodebuild │ │ └── lib │ │ ├── clang │ │ └── 3.5.0 │ │ │ ├── asan_blacklist.txt │ │ │ ├── include │ │ │ ├── Intrin.h │ │ │ ├── __wmmintrin_aes.h │ │ │ ├── __wmmintrin_pclmul.h │ │ │ ├── altivec.h │ │ │ ├── ammintrin.h │ │ │ ├── arm_acle.h │ │ │ ├── arm_neon.h │ │ │ ├── avx2intrin.h │ │ │ ├── avxintrin.h │ │ │ ├── bmi2intrin.h │ │ │ ├── bmiintrin.h │ │ │ ├── cpuid.h │ │ │ ├── emmintrin.h │ │ │ ├── f16cintrin.h │ │ │ ├── float.h │ │ │ ├── fma4intrin.h │ │ │ ├── fmaintrin.h │ │ │ ├── ia32intrin.h │ │ │ ├── immintrin.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── lzcntintrin.h │ │ │ ├── mm3dnow.h │ │ │ ├── mm_malloc.h │ │ │ ├── mmintrin.h │ │ │ ├── module.modulemap │ │ │ ├── nmmintrin.h │ │ │ ├── pmmintrin.h │ │ │ ├── popcntintrin.h │ │ │ ├── prfchwintrin.h │ │ │ ├── rdseedintrin.h │ │ │ ├── rtmintrin.h │ │ │ ├── sanitizer │ │ │ │ ├── allocator_interface.h │ │ │ │ ├── asan_interface.h │ │ │ │ ├── common_interface_defs.h │ │ │ │ ├── dfsan_interface.h │ │ │ │ ├── linux_syscall_hooks.h │ │ │ │ ├── lsan_interface.h │ │ │ │ ├── msan_interface.h │ │ │ │ └── tsan_interface_atomic.h │ │ │ ├── shaintrin.h │ │ │ ├── smmintrin.h │ │ │ ├── stdalign.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdnoreturn.h │ │ │ ├── tbmintrin.h │ │ │ ├── tgmath.h │ │ │ ├── tmmintrin.h │ │ │ ├── unwind.h │ │ │ ├── varargs.h │ │ │ ├── wmmintrin.h │ │ │ ├── x86intrin.h │ │ │ ├── xmmintrin.h │ │ │ └── xopintrin.h │ │ │ └── lib │ │ │ └── darwin │ │ │ ├── libclang_rt.asan_iossim_dynamic.dylib │ │ │ ├── libclang_rt.asan_osx_dynamic.dylib │ │ │ ├── libclang_rt.builtins-i386.a │ │ │ ├── libclang_rt.builtins-x86_64.a │ │ │ ├── libclang_rt.profile_osx.a │ │ │ └── libclang_rt.ubsan_osx.a │ │ └── oclint │ │ ├── reporters │ │ ├── libHTMLReporter.dylib │ │ ├── libJSONReporter.dylib │ │ ├── libPMDReporter.dylib │ │ ├── libTextReporter.dylib │ │ └── libXMLReporter.dylib │ │ └── rules │ │ ├── libAvoidBranchingStatementAsLastInLoopRule.dylib │ │ ├── libBaseClassDestructorShouldBeVirtualOrProtectedRule.dylib │ │ ├── libBitwiseOperatorInConditionalRule.dylib │ │ ├── libBrokenNullCheckRule.dylib │ │ ├── libBrokenOddnessCheckRule.dylib │ │ ├── libCollapsibleIfStatementsRule.dylib │ │ ├── libConstantConditionalOperatorRule.dylib │ │ ├── libConstantIfExpressionRule.dylib │ │ ├── libCoveredSwitchStatementsDontNeedDefaultRule.dylib │ │ ├── libCyclomaticComplexityRule.dylib │ │ ├── libDeadCodeRule.dylib │ │ ├── libDefaultLabelNotLastInSwitchStatementRule.dylib │ │ ├── libDestructorOfVirtualClassRule.dylib │ │ ├── libDoubleNegativeRule.dylib │ │ ├── libEmptyCatchStatementRule.dylib │ │ ├── libEmptyDoWhileStatementRule.dylib │ │ ├── libEmptyElseBlockRule.dylib │ │ ├── libEmptyFinallyStatementRule.dylib │ │ ├── libEmptyForStatementRule.dylib │ │ ├── libEmptyIfStatementRule.dylib │ │ ├── libEmptySwitchStatementRule.dylib │ │ ├── libEmptyTryStatementRule.dylib │ │ ├── libEmptyWhileStatementRule.dylib │ │ ├── libForLoopShouldBeWhileLoopRule.dylib │ │ ├── libGotoStatementRule.dylib │ │ ├── libInvertedLogicRule.dylib │ │ ├── libJumbledIncrementerRule.dylib │ │ ├── libLongClassRule.dylib │ │ ├── libLongLineRule.dylib │ │ ├── libLongMethodRule.dylib │ │ ├── libLongVariableNameRule.dylib │ │ ├── libMisplacedNullCheckRule.dylib │ │ ├── libMissingBreakInSwitchStatementRule.dylib │ │ ├── libMultipleUnaryOperatorRule.dylib │ │ ├── libNPathComplexityRule.dylib │ │ ├── libNcssMethodCountRule.dylib │ │ ├── libNestedBlockDepthRule.dylib │ │ ├── libNonCaseLabelInSwitchStatementRule.dylib │ │ ├── libObjCAssignIvarOutsideAccessorsRule.dylib │ │ ├── libObjCBoxedExpressionsRule.dylib │ │ ├── libObjCContainerLiteralsRule.dylib │ │ ├── libObjCNSNumberLiteralsRule.dylib │ │ ├── libObjCObjectSubscriptingRule.dylib │ │ ├── libObjCVerifyIsEqualHashRule.dylib │ │ ├── libObjCVerifyMustCallSuperRule.dylib │ │ ├── libObjCVerifyProhibitedCallRule.dylib │ │ ├── libObjCVerifyProtectedMethodRule.dylib │ │ ├── libObjCVerifySubclassMustImplementRule.dylib │ │ ├── libParameterReassignmentRule.dylib │ │ ├── libPreferEarlyExitRule.dylib │ │ ├── libRedundantConditionalOperatorRule.dylib │ │ ├── libRedundantIfStatementRule.dylib │ │ ├── libRedundantLocalVariableRule.dylib │ │ ├── libRedundantNilCheckRule.dylib │ │ ├── libReturnFromFinallyBlockRule.dylib │ │ ├── libShortVariableNameRule.dylib │ │ ├── libSwitchStatementsShouldHaveDefaultRule.dylib │ │ ├── libThrowExceptionFromFinallyBlockRule.dylib │ │ ├── libTooFewBranchesInSwitchStatementRule.dylib │ │ ├── libTooManyFieldsRule.dylib │ │ ├── libTooManyMethodsRule.dylib │ │ ├── libTooManyParametersRule.dylib │ │ ├── libUnnecessaryElseStatementRule.dylib │ │ ├── libUnnecessaryNullCheckForCXXDeallocRule.dylib │ │ ├── libUnusedLocalVariableRule.dylib │ │ ├── libUnusedMethodParameterRule.dylib │ │ └── libUselessParenthesesRule.dylib └── run_tests.sh ├── Docs ├── Contributions.md ├── Images │ ├── exchange-35x35.png │ └── exchange_292929_100.png ├── Installation.md ├── Licenses │ └── Fontawesome - LICENSE.txt ├── Notes │ ├── 2.0.0 - Dev Notes - 09:11:2014.md │ ├── 2.0.0 - Dev Notes - 11:10:2014.md │ ├── 2.0.0 - Dev Notes - 13:09:2014.md │ └── 2.0.0 - Dev Notes - 14:09:2014.md ├── Production Cases.md ├── Usage.md └── What's New.md ├── LICENSE ├── Legacy ├── Examples │ └── Custom Cells │ │ ├── I3TodoCell.h │ │ └── I3TodoCell.m ├── I3DragNDrop.podspec ├── LICENSE.md ├── MAINTENANCE.md ├── Pod │ └── Classes │ │ ├── I3DragBetweenHelper.h │ │ └── I3DragBetweenHelper.m ├── README.md └── Test App │ ├── Test App.xcodeproj │ └── project.pbxproj │ ├── Test App │ ├── Base.lproj │ │ └── Main.storyboard │ ├── I32ExchangeableCollectionViewsController.h │ ├── I32ExchangeableCollectionViewsController.m │ ├── I32ExchangeableTableViewsController.h │ ├── I32ExchangeableTableViewsController.m │ ├── I32RearrangeableExchangeableTablesViewController.h │ ├── I32RearrangeableExchangeableTablesViewController.m │ ├── I32RearrangeableTablesViewController.h │ ├── I32RearrangeableTablesViewController.m │ ├── I3AppDelegate.h │ ├── I3AppDelegate.m │ ├── I3CollectionToRearrangeableTableViewController.h │ ├── I3CollectionToRearrangeableTableViewController.m │ ├── I3UnrarranreableToRearrangeableCollectionsViewController.h │ ├── I3UnrarranreableToRearrangeableCollectionsViewController.m │ ├── I3UnrearrangebleTableToTableViewController.h │ ├── I3UnrearrangebleTableToTableViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── first.imageset │ │ │ ├── Contents.json │ │ │ ├── first.png │ │ │ └── first@2x.png │ │ └── second.imageset │ │ │ ├── Contents.json │ │ │ ├── second.png │ │ │ └── second@2x.png │ ├── Test App-Info.plist │ ├── Test App-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m │ └── Test AppTests │ ├── Test AppTests-Info.plist │ ├── Test_AppTests.m │ └── en.lproj │ └── InfoPlist.strings ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── I3BasicRenderDelegate.h │ ├── I3BasicRenderDelegate.m │ ├── I3CloneView.h │ ├── I3CloneView.m │ ├── I3Collection.h │ ├── I3DragArena.h │ ├── I3DragArena.m │ ├── I3DragDataSource.h │ ├── I3DragRenderDelegate.h │ ├── I3GestureCoordinator.h │ ├── I3GestureCoordinator.m │ ├── I3Logging.h │ ├── UICollectionView+I3Collection.h │ ├── UICollectionView+I3Collection.m │ ├── UITableView+I3Collection.h │ └── UITableView+I3Collection.m ├── README.md ├── Tests ├── BetweenKit.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── BetweenKitTests.xcscheme ├── BetweenKit │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── BetweenKit-Info.plist │ ├── BetweenKit-Prefix.pch │ ├── I3AppDelegate.h │ ├── I3AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── README.md └── Tests │ ├── BetweenKit-Info.plist │ ├── BetweenKit-Prefix.pch │ ├── EXPMatchers+haveStartedDrag.h │ ├── EXPMatchers+haveStartedDrag.m │ ├── I3BasicRenderDelegateTests.m │ ├── I3CloneViewTest.m │ ├── I3CollectionFixture.h │ ├── I3CollectionFixture.m │ ├── I3CoordinatorCreationMethods.h │ ├── I3CoordinatorCreationMethods.m │ ├── I3DataSourceControllerFixture.h │ ├── I3DataSourceControllerFixture.m │ ├── I3DragArenaTest.m │ ├── I3DragDataSourceFixtures.h │ ├── I3DragDataSourceFixtures.m │ ├── I3GestureCoordinatorDragStartTests.m │ ├── I3GestureCoordinatorDragStopTests.m │ ├── I3GestureCoordinatorDraggingTests.m │ ├── I3GestureCoordinatorTests.m │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── UICollectionView+I3CollectionTest.m │ ├── UITableView+I3CollectionTest.m │ └── en.lproj │ └── InfoPlist.strings └── Use Cases ├── 1. Rearrangeable Table View (Exchange) ├── 1. Rearrangeable Table View (Exchange).xcodeproj │ └── project.pbxproj ├── 1. Rearrangeable Table View (Exchange) │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── 1. Rearrangeable Table View (Exchange)Tests │ ├── Info.plist │ └── ___Rearrangeable_Table_View__Exchange_Tests.m ├── Podfile ├── Podfile.lock └── README.md ├── 10. 2 Collection Views All Properties ├── 10. 2 Collection Views All Properties.xcodeproj │ └── project.pbxproj ├── 10. 2 Collection Views All Properties │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── 10. 2 Collection Views All PropertiesTests │ ├── Info.plist │ └── _0__2_Collection_Views_All_PropertiesTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 11. 3 Collections ├── 11. 3 Collections.xcodeproj │ └── project.pbxproj ├── 11. 3 Collections │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── MultipleCollectionsViewController.h │ ├── MultipleCollectionsViewController.m │ └── main.m ├── 11. 3 CollectionsTests │ ├── Info.plist │ └── _1__3_CollectionsTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 12. Collections With Sections ├── 12. Collections With Sections.xcodeproj │ └── project.pbxproj ├── 12. Collections With Sections │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── 12. Collections With SectionsTests │ ├── Info.plist │ └── _2__Collections_With_SectionsTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 13. Moveable Editable Tables ├── 13. Moveable Editable Tables.xcodeproj │ └── project.pbxproj ├── 13. Moveable Editable Tables │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── 13. Moveable Editable TablesTests │ ├── Info.plist │ └── _3__Moveable_Editable_TablesTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 14. Draggable Item Decorations ├── 14. Draggable Item Decorations.xcodeproj │ └── project.pbxproj ├── 14. Draggable Item Decorations │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── MoveableCollectionViewCell.h │ ├── MoveableCollectionViewCell.m │ ├── MoveableCollectionViewCell.xib │ ├── icon_move_arrow.png │ ├── icon_move_arrow@2x.png │ └── main.m ├── 14. Draggable Item DecorationsTests │ ├── Info.plist │ └── _4__Draggable_Item_DecorationsTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 15. Confirm Delete ├── 15. Confirm Delete.xcodeproj │ └── project.pbxproj ├── 15. Confirm Delete │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── 15. Confirm DeleteTests │ ├── Info.plist │ └── _5__Confirm_DeleteTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 16. Custom Render Delegate ├── 16. Custom Render Delegate.xcodeproj │ └── project.pbxproj ├── 16. Custom Render Delegate │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CustomRenderViewController.h │ ├── CustomRenderViewController.m │ ├── FunkRenderDelegate.h │ ├── FunkRenderDelegate.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── 16. Custom Render DelegateTests │ ├── Info.plist │ └── _6__Custom_Render_DelegateTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 17. Async Networking Collections ├── 17. Async Networking Collections.xcodeproj │ └── project.pbxproj ├── 17. Async Networking Collections │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── AvailableGistCollectionViewCell.h │ ├── AvailableGistCollectionViewCell.m │ ├── AvailableGistCollectionViewCell.xib │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Gist.h │ ├── Gist.m │ ├── GistCollectionViewCell.h │ ├── GistCollectionViewCell.m │ ├── GistCollectionViewCell.xib │ ├── GistService.h │ ├── GistService.m │ ├── GistViewController.h │ ├── GistViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Routing.h │ └── main.m ├── 17. Async Networking CollectionsTests │ ├── Info.plist │ └── _7__Async_Networking_CollectionsTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 18. Paint Me ├── 18. Paint Me.xcodeproj │ └── project.pbxproj ├── 18. Paint Me │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Note.h │ ├── Note.m │ ├── PaintMeViewController.h │ ├── PaintMeViewController.m │ └── main.m ├── 18. Paint MeTests │ ├── Info.plist │ └── _8__Paint_MeTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 19. Fluid UI ├── 19. Fluid UI.xcodeproj │ └── project.pbxproj ├── 19. Fluid UI │ ├── AbstractFormCell.h │ ├── AbstractFormCell.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── FluidUIViewController.h │ ├── FluidUIViewController.m │ ├── FormButtonCell.h │ ├── FormButtonCell.m │ ├── FormButtonCell.xib │ ├── FormItem.h │ ├── FormItem.m │ ├── FormSwitchCell.h │ ├── FormSwitchCell.m │ ├── FormSwitchCell.xib │ ├── FormTextAreaCell.h │ ├── FormTextAreaCell.m │ ├── FormTextAreaCell.xib │ ├── FormTextFieldCell.h │ ├── FormTextFieldCell.m │ ├── FormTextFieldCell.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ParentAwareButton.h │ ├── ParentAwareButton.m │ ├── ParentAwareSwitch.h │ ├── ParentAwareSwitch.m │ ├── ParentAwareTextField.h │ ├── ParentAwareTextField.m │ ├── ParentAwareTextView.h │ ├── ParentAwareTextView.m │ ├── ParentCellAware.h │ ├── icon_bell.png │ ├── icon_bell@2x.png │ ├── icon_bomb.png │ ├── icon_bomb@2x.png │ ├── icon_bug.png │ ├── icon_bug@2x.png │ ├── icon_comments.png │ ├── icon_comments@2x.png │ ├── icon_cube.png │ ├── icon_cube@2x.png │ ├── icon_move_arrow.png │ ├── icon_move_arrow@2x.png │ ├── icon_plus_button.png │ ├── icon_plus_button@2x.png │ ├── icon_plus_switch.png │ ├── icon_plus_switch@2x.png │ ├── icon_plus_text_area.png │ ├── icon_plus_text_area@2x.png │ ├── icon_plus_text_field.png │ ├── icon_plus_text_field@2x.png │ └── main.m ├── 19. Fluid UITests │ ├── Info.plist │ └── _9__Fluid_UITests.m ├── Podfile ├── Podfile.lock └── README.md ├── 2. Rearrangeable Table View (Sift) ├── 2. Rearrangeable Table View (Sift).xcodeproj │ └── project.pbxproj ├── 2. Rearrangeable Table View (Sift) │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── 2. Rearrangeable Table View (Sift)Tests │ ├── Info.plist │ └── ___Rearrangeable_Table_View__Sift_Tests.m ├── Podfile ├── Podfile.lock └── README.md ├── 20. Split View Controller ├── 20. Split View Controller.xcodeproj │ └── project.pbxproj ├── 20. Split View Controller │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── DetailViewController.h │ ├── DetailViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── MasterViewController.h │ ├── MasterViewController.m │ └── main.m ├── 20. Split View ControllerTests │ ├── Info.plist │ └── _0__Split_View_ControllerTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 3. Deletable Table View ├── 3. Deletable Table View.xcodeproj │ └── project.pbxproj ├── 3. Deletable Table View │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── 3. Deletable Table ViewTests │ ├── Info.plist │ └── ___Deletable_Table_ViewTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 4. 2 Droppable Table Views ├── 4. 2 Droppable Table Views.xcodeproj │ └── project.pbxproj ├── 4. 2 Droppable Table Views │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── 4. 2 Droppable Table ViewsTests │ ├── Info.plist │ └── ___2_Droppable_Table_ViewsTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 5. 2 Table Views All Properties ├── 5. 2 Table Views All Properties.xcodeproj │ └── project.pbxproj ├── 5. 2 Table Views All Properties │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Main.storyboard │ ├── TableViewController.h │ ├── TableViewController.m │ └── main.m ├── 5. 2 Table Views All PropertiesTests │ ├── Info.plist │ └── ___2_Table_Views_All_PropertiesTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 6. Rearrangeable Collection View (Exchange) ├── 6. Rearrangeable Collection View (Exchange).xcodeproj │ └── project.pbxproj ├── 6. Rearrangeable Collection View (Exchange) │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── 6. Rearrangeable Collection View (Exchange)Tests │ ├── Info.plist │ └── ___Rearrangeable_Collection_View__Exchange_Tests.m ├── Podfile ├── Podfile.lock └── README.md ├── 7. Rearrangeable Collection View (Sift) ├── 7. Rearrangeable Collection View (Sift).xcodeproj │ └── project.pbxproj ├── 7. Rearrangeable Collection View (Sift) │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── 7. Rearrangeable Collection View (Sift)Tests │ ├── Info.plist │ └── ___Rearrangeable_Collection_View__Sift_Tests.m ├── Podfile ├── Podfile.lock └── README.md ├── 8. Deletable Collection ├── 8. Deletable Collection.xcodeproj │ └── project.pbxproj ├── 8. Deletable Collection │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── 8. Deletable CollectionTests │ ├── Info.plist │ └── ___Deletable_CollectionTests.m ├── Podfile ├── Podfile.lock └── README.md ├── 9. 2 Droppable Collection Views ├── 9. 2 Droppable Collection Views.xcodeproj │ └── project.pbxproj ├── 9. 2 Droppable Collection Views │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── 9. 2 Droppable Collection ViewsTests │ ├── Info.plist │ └── ___2_Droppable_Collection_ViewsTests.m ├── Podfile ├── Podfile.lock └── README.md ├── README.md └── Utilities ├── Classes ├── I3SimpleData.h ├── I3SimpleData.m ├── I3SubtitleCollectionViewCell.h ├── I3SubtitleCollectionViewCell.m ├── I3SubtitleTableViewCell.h └── I3SubtitleTableViewCell.m └── Views └── I3SubtitleCollectionViewCell.xib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/.travis.yml -------------------------------------------------------------------------------- /BetweenKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/BetweenKit.podspec -------------------------------------------------------------------------------- /Build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/README.md -------------------------------------------------------------------------------- /Build/after_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/after_coverage.sh -------------------------------------------------------------------------------- /Build/after_mess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/after_mess.sh -------------------------------------------------------------------------------- /Build/before_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/before_install.sh -------------------------------------------------------------------------------- /Build/external/Coveralls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/Coveralls/LICENSE -------------------------------------------------------------------------------- /Build/external/Coveralls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/Coveralls/README.md -------------------------------------------------------------------------------- /Build/external/Coveralls/coveralls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/Coveralls/coveralls.rb -------------------------------------------------------------------------------- /Build/external/OCLint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/LICENSE -------------------------------------------------------------------------------- /Build/external/OCLint/bin/oclint: -------------------------------------------------------------------------------- 1 | oclint-0.8.1 -------------------------------------------------------------------------------- /Build/external/OCLint/bin/oclint-0.8.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/bin/oclint-0.8.1 -------------------------------------------------------------------------------- /Build/external/OCLint/bin/oclint-json-compilation-database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/bin/oclint-json-compilation-database -------------------------------------------------------------------------------- /Build/external/OCLint/bin/oclint-xcodebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/bin/oclint-xcodebuild -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/asan_blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/asan_blacklist.txt -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/Intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/Intrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/__wmmintrin_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/__wmmintrin_aes.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/__wmmintrin_pclmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/__wmmintrin_pclmul.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/altivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/altivec.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/ammintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/ammintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/arm_acle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/arm_acle.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/arm_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/arm_neon.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/avx2intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/avx2intrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/avxintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/avxintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/bmi2intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/bmi2intrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/bmiintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/bmiintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/cpuid.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/emmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/emmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/f16cintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/f16cintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/float.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/fma4intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/fma4intrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/fmaintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/fmaintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/ia32intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/ia32intrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/immintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/immintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/iso646.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/limits.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/lzcntintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/lzcntintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/mm3dnow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/mm3dnow.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/mm_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/mm_malloc.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/mmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/mmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/module.modulemap -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/nmmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/pmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/pmmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/popcntintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/popcntintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/prfchwintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/prfchwintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/rdseedintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/rdseedintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/rtmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/rtmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/allocator_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/allocator_interface.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/asan_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/asan_interface.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/common_interface_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/common_interface_defs.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/dfsan_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/dfsan_interface.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/linux_syscall_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/linux_syscall_hooks.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/lsan_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/lsan_interface.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/msan_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/msan_interface.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/tsan_interface_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/sanitizer/tsan_interface_atomic.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/shaintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/shaintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/smmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/smmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/stdalign.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/stdarg.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/stdbool.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/stddef.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/stdint.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/stdnoreturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/stdnoreturn.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/tbmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/tbmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/tgmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/tgmath.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/tmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/tmmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/unwind.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/varargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/varargs.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/wmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/wmmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/x86intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/x86intrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/xmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/xmmintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/include/xopintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/include/xopintrin.h -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.asan_iossim_dynamic.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.asan_iossim_dynamic.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.builtins-i386.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.builtins-i386.a -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.builtins-x86_64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.builtins-x86_64.a -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.profile_osx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.profile_osx.a -------------------------------------------------------------------------------- /Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.ubsan_osx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/clang/3.5.0/lib/darwin/libclang_rt.ubsan_osx.a -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/reporters/libHTMLReporter.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/reporters/libHTMLReporter.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/reporters/libJSONReporter.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/reporters/libJSONReporter.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/reporters/libPMDReporter.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/reporters/libPMDReporter.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/reporters/libTextReporter.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/reporters/libTextReporter.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/reporters/libXMLReporter.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/reporters/libXMLReporter.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libAvoidBranchingStatementAsLastInLoopRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libAvoidBranchingStatementAsLastInLoopRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libBaseClassDestructorShouldBeVirtualOrProtectedRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libBaseClassDestructorShouldBeVirtualOrProtectedRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libBitwiseOperatorInConditionalRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libBitwiseOperatorInConditionalRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libBrokenNullCheckRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libBrokenNullCheckRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libBrokenOddnessCheckRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libBrokenOddnessCheckRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libCollapsibleIfStatementsRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libCollapsibleIfStatementsRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libConstantConditionalOperatorRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libConstantConditionalOperatorRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libConstantIfExpressionRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libConstantIfExpressionRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libCoveredSwitchStatementsDontNeedDefaultRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libCoveredSwitchStatementsDontNeedDefaultRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libCyclomaticComplexityRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libCyclomaticComplexityRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libDeadCodeRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libDeadCodeRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libDefaultLabelNotLastInSwitchStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libDefaultLabelNotLastInSwitchStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libDestructorOfVirtualClassRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libDestructorOfVirtualClassRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libDoubleNegativeRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libDoubleNegativeRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libEmptyCatchStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libEmptyCatchStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libEmptyDoWhileStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libEmptyDoWhileStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libEmptyElseBlockRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libEmptyElseBlockRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libEmptyFinallyStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libEmptyFinallyStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libEmptyForStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libEmptyForStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libEmptyIfStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libEmptyIfStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libEmptySwitchStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libEmptySwitchStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libEmptyTryStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libEmptyTryStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libEmptyWhileStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libEmptyWhileStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libForLoopShouldBeWhileLoopRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libForLoopShouldBeWhileLoopRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libGotoStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libGotoStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libInvertedLogicRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libInvertedLogicRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libJumbledIncrementerRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libJumbledIncrementerRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libLongClassRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libLongClassRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libLongLineRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libLongLineRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libLongMethodRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libLongMethodRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libLongVariableNameRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libLongVariableNameRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libMisplacedNullCheckRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libMisplacedNullCheckRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libMissingBreakInSwitchStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libMissingBreakInSwitchStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libMultipleUnaryOperatorRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libMultipleUnaryOperatorRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libNPathComplexityRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libNPathComplexityRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libNcssMethodCountRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libNcssMethodCountRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libNestedBlockDepthRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libNestedBlockDepthRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libNonCaseLabelInSwitchStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libNonCaseLabelInSwitchStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCAssignIvarOutsideAccessorsRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCAssignIvarOutsideAccessorsRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCBoxedExpressionsRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCBoxedExpressionsRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCContainerLiteralsRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCContainerLiteralsRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCNSNumberLiteralsRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCNSNumberLiteralsRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCObjectSubscriptingRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCObjectSubscriptingRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCVerifyIsEqualHashRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCVerifyIsEqualHashRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCVerifyMustCallSuperRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCVerifyMustCallSuperRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCVerifyProhibitedCallRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCVerifyProhibitedCallRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCVerifyProtectedMethodRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCVerifyProtectedMethodRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libObjCVerifySubclassMustImplementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libObjCVerifySubclassMustImplementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libParameterReassignmentRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libParameterReassignmentRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libPreferEarlyExitRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libPreferEarlyExitRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libRedundantConditionalOperatorRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libRedundantConditionalOperatorRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libRedundantIfStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libRedundantIfStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libRedundantLocalVariableRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libRedundantLocalVariableRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libRedundantNilCheckRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libRedundantNilCheckRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libReturnFromFinallyBlockRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libReturnFromFinallyBlockRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libShortVariableNameRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libShortVariableNameRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libSwitchStatementsShouldHaveDefaultRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libSwitchStatementsShouldHaveDefaultRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libThrowExceptionFromFinallyBlockRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libThrowExceptionFromFinallyBlockRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libTooFewBranchesInSwitchStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libTooFewBranchesInSwitchStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libTooManyFieldsRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libTooManyFieldsRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libTooManyMethodsRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libTooManyMethodsRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libTooManyParametersRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libTooManyParametersRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libUnnecessaryElseStatementRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libUnnecessaryElseStatementRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libUnnecessaryNullCheckForCXXDeallocRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libUnnecessaryNullCheckForCXXDeallocRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libUnusedLocalVariableRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libUnusedLocalVariableRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libUnusedMethodParameterRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libUnusedMethodParameterRule.dylib -------------------------------------------------------------------------------- /Build/external/OCLint/lib/oclint/rules/libUselessParenthesesRule.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/external/OCLint/lib/oclint/rules/libUselessParenthesesRule.dylib -------------------------------------------------------------------------------- /Build/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Build/run_tests.sh -------------------------------------------------------------------------------- /Docs/Contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Contributions.md -------------------------------------------------------------------------------- /Docs/Images/exchange-35x35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Images/exchange-35x35.png -------------------------------------------------------------------------------- /Docs/Images/exchange_292929_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Images/exchange_292929_100.png -------------------------------------------------------------------------------- /Docs/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Installation.md -------------------------------------------------------------------------------- /Docs/Licenses/Fontawesome - LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Licenses/Fontawesome - LICENSE.txt -------------------------------------------------------------------------------- /Docs/Notes/2.0.0 - Dev Notes - 09:11:2014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Notes/2.0.0 - Dev Notes - 09:11:2014.md -------------------------------------------------------------------------------- /Docs/Notes/2.0.0 - Dev Notes - 11:10:2014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Notes/2.0.0 - Dev Notes - 11:10:2014.md -------------------------------------------------------------------------------- /Docs/Notes/2.0.0 - Dev Notes - 13:09:2014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Notes/2.0.0 - Dev Notes - 13:09:2014.md -------------------------------------------------------------------------------- /Docs/Notes/2.0.0 - Dev Notes - 14:09:2014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Notes/2.0.0 - Dev Notes - 14:09:2014.md -------------------------------------------------------------------------------- /Docs/Production Cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Production Cases.md -------------------------------------------------------------------------------- /Docs/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/Usage.md -------------------------------------------------------------------------------- /Docs/What's New.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Docs/What's New.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /Legacy/Examples/Custom Cells/I3TodoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Examples/Custom Cells/I3TodoCell.h -------------------------------------------------------------------------------- /Legacy/Examples/Custom Cells/I3TodoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Examples/Custom Cells/I3TodoCell.m -------------------------------------------------------------------------------- /Legacy/I3DragNDrop.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/I3DragNDrop.podspec -------------------------------------------------------------------------------- /Legacy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/LICENSE.md -------------------------------------------------------------------------------- /Legacy/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/MAINTENANCE.md -------------------------------------------------------------------------------- /Legacy/Pod/Classes/I3DragBetweenHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Pod/Classes/I3DragBetweenHelper.h -------------------------------------------------------------------------------- /Legacy/Pod/Classes/I3DragBetweenHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Pod/Classes/I3DragBetweenHelper.m -------------------------------------------------------------------------------- /Legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/README.md -------------------------------------------------------------------------------- /Legacy/Test App/Test App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I32ExchangeableCollectionViewsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I32ExchangeableCollectionViewsController.h -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I32ExchangeableCollectionViewsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I32ExchangeableCollectionViewsController.m -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I32ExchangeableTableViewsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I32ExchangeableTableViewsController.h -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I32ExchangeableTableViewsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I32ExchangeableTableViewsController.m -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I32RearrangeableExchangeableTablesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I32RearrangeableExchangeableTablesViewController.h -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I32RearrangeableExchangeableTablesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I32RearrangeableExchangeableTablesViewController.m -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I32RearrangeableTablesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I32RearrangeableTablesViewController.h -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I32RearrangeableTablesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I32RearrangeableTablesViewController.m -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I3AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I3AppDelegate.h -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I3AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I3AppDelegate.m -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I3CollectionToRearrangeableTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I3CollectionToRearrangeableTableViewController.h -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I3CollectionToRearrangeableTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I3CollectionToRearrangeableTableViewController.m -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I3UnrarranreableToRearrangeableCollectionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I3UnrarranreableToRearrangeableCollectionsViewController.h -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I3UnrarranreableToRearrangeableCollectionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I3UnrarranreableToRearrangeableCollectionsViewController.m -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I3UnrearrangebleTableToTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I3UnrearrangebleTableToTableViewController.h -------------------------------------------------------------------------------- /Legacy/Test App/Test App/I3UnrearrangebleTableToTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/I3UnrearrangebleTableToTableViewController.m -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Images.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Images.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Images.xcassets/first.imageset/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Images.xcassets/first.imageset/first.png -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Images.xcassets/first.imageset/first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Images.xcassets/first.imageset/first@2x.png -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Images.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Images.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Images.xcassets/second.imageset/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Images.xcassets/second.imageset/second.png -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Images.xcassets/second.imageset/second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Images.xcassets/second.imageset/second@2x.png -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Test App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Test App-Info.plist -------------------------------------------------------------------------------- /Legacy/Test App/Test App/Test App-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/Test App-Prefix.pch -------------------------------------------------------------------------------- /Legacy/Test App/Test App/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Legacy/Test App/Test App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test App/main.m -------------------------------------------------------------------------------- /Legacy/Test App/Test AppTests/Test AppTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test AppTests/Test AppTests-Info.plist -------------------------------------------------------------------------------- /Legacy/Test App/Test AppTests/Test_AppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Legacy/Test App/Test AppTests/Test_AppTests.m -------------------------------------------------------------------------------- /Legacy/Test App/Test AppTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/I3BasicRenderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3BasicRenderDelegate.h -------------------------------------------------------------------------------- /Pod/Classes/I3BasicRenderDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3BasicRenderDelegate.m -------------------------------------------------------------------------------- /Pod/Classes/I3CloneView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3CloneView.h -------------------------------------------------------------------------------- /Pod/Classes/I3CloneView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3CloneView.m -------------------------------------------------------------------------------- /Pod/Classes/I3Collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3Collection.h -------------------------------------------------------------------------------- /Pod/Classes/I3DragArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3DragArena.h -------------------------------------------------------------------------------- /Pod/Classes/I3DragArena.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3DragArena.m -------------------------------------------------------------------------------- /Pod/Classes/I3DragDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3DragDataSource.h -------------------------------------------------------------------------------- /Pod/Classes/I3DragRenderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3DragRenderDelegate.h -------------------------------------------------------------------------------- /Pod/Classes/I3GestureCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3GestureCoordinator.h -------------------------------------------------------------------------------- /Pod/Classes/I3GestureCoordinator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3GestureCoordinator.m -------------------------------------------------------------------------------- /Pod/Classes/I3Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/I3Logging.h -------------------------------------------------------------------------------- /Pod/Classes/UICollectionView+I3Collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/UICollectionView+I3Collection.h -------------------------------------------------------------------------------- /Pod/Classes/UICollectionView+I3Collection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/UICollectionView+I3Collection.m -------------------------------------------------------------------------------- /Pod/Classes/UITableView+I3Collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/UITableView+I3Collection.h -------------------------------------------------------------------------------- /Pod/Classes/UITableView+I3Collection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Pod/Classes/UITableView+I3Collection.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/README.md -------------------------------------------------------------------------------- /Tests/BetweenKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/BetweenKit.xcodeproj/xcshareddata/xcschemes/BetweenKitTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit.xcodeproj/xcshareddata/xcschemes/BetweenKitTests.xcscheme -------------------------------------------------------------------------------- /Tests/BetweenKit/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Tests/BetweenKit/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Tests/BetweenKit/BetweenKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/BetweenKit-Info.plist -------------------------------------------------------------------------------- /Tests/BetweenKit/BetweenKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/BetweenKit-Prefix.pch -------------------------------------------------------------------------------- /Tests/BetweenKit/I3AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/I3AppDelegate.h -------------------------------------------------------------------------------- /Tests/BetweenKit/I3AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/I3AppDelegate.m -------------------------------------------------------------------------------- /Tests/BetweenKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/BetweenKit/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Tests/BetweenKit/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/Tests-Info.plist -------------------------------------------------------------------------------- /Tests/BetweenKit/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/Tests-Prefix.pch -------------------------------------------------------------------------------- /Tests/BetweenKit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Tests/BetweenKit/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/BetweenKit/main.m -------------------------------------------------------------------------------- /Tests/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Podfile -------------------------------------------------------------------------------- /Tests/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Podfile.lock -------------------------------------------------------------------------------- /Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/README.md -------------------------------------------------------------------------------- /Tests/Tests/BetweenKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/BetweenKit-Info.plist -------------------------------------------------------------------------------- /Tests/Tests/BetweenKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/BetweenKit-Prefix.pch -------------------------------------------------------------------------------- /Tests/Tests/EXPMatchers+haveStartedDrag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/EXPMatchers+haveStartedDrag.h -------------------------------------------------------------------------------- /Tests/Tests/EXPMatchers+haveStartedDrag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/EXPMatchers+haveStartedDrag.m -------------------------------------------------------------------------------- /Tests/Tests/I3BasicRenderDelegateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3BasicRenderDelegateTests.m -------------------------------------------------------------------------------- /Tests/Tests/I3CloneViewTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3CloneViewTest.m -------------------------------------------------------------------------------- /Tests/Tests/I3CollectionFixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3CollectionFixture.h -------------------------------------------------------------------------------- /Tests/Tests/I3CollectionFixture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3CollectionFixture.m -------------------------------------------------------------------------------- /Tests/Tests/I3CoordinatorCreationMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3CoordinatorCreationMethods.h -------------------------------------------------------------------------------- /Tests/Tests/I3CoordinatorCreationMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3CoordinatorCreationMethods.m -------------------------------------------------------------------------------- /Tests/Tests/I3DataSourceControllerFixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3DataSourceControllerFixture.h -------------------------------------------------------------------------------- /Tests/Tests/I3DataSourceControllerFixture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3DataSourceControllerFixture.m -------------------------------------------------------------------------------- /Tests/Tests/I3DragArenaTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3DragArenaTest.m -------------------------------------------------------------------------------- /Tests/Tests/I3DragDataSourceFixtures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3DragDataSourceFixtures.h -------------------------------------------------------------------------------- /Tests/Tests/I3DragDataSourceFixtures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3DragDataSourceFixtures.m -------------------------------------------------------------------------------- /Tests/Tests/I3GestureCoordinatorDragStartTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3GestureCoordinatorDragStartTests.m -------------------------------------------------------------------------------- /Tests/Tests/I3GestureCoordinatorDragStopTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3GestureCoordinatorDragStopTests.m -------------------------------------------------------------------------------- /Tests/Tests/I3GestureCoordinatorDraggingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3GestureCoordinatorDraggingTests.m -------------------------------------------------------------------------------- /Tests/Tests/I3GestureCoordinatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/I3GestureCoordinatorTests.m -------------------------------------------------------------------------------- /Tests/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Tests/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Tests/Tests/UICollectionView+I3CollectionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/UICollectionView+I3CollectionTest.m -------------------------------------------------------------------------------- /Tests/Tests/UITableView+I3CollectionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Tests/Tests/UITableView+I3CollectionTest.m -------------------------------------------------------------------------------- /Tests/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange).xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange).xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/Info.plist -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/TableViewController.h -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/TableViewController.m -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)/main.m -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)Tests/Info.plist -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)Tests/___Rearrangeable_Table_View__Exchange_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/1. Rearrangeable Table View (Exchange)Tests/___Rearrangeable_Table_View__Exchange_Tests.m -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/Podfile -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/1. Rearrangeable Table View (Exchange)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/1. Rearrangeable Table View (Exchange)/README.md -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/CollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/CollectionViewController.h -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/CollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/CollectionViewController.m -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/Info.plist -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All Properties/main.m -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All PropertiesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All PropertiesTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All PropertiesTests/_0__2_Collection_Views_All_PropertiesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/10. 2 Collection Views All PropertiesTests/_0__2_Collection_Views_All_PropertiesTests.m -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/Podfile -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/10. 2 Collection Views All Properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/10. 2 Collection Views All Properties/README.md -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections/Info.plist -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections/MultipleCollectionsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections/MultipleCollectionsViewController.h -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections/MultipleCollectionsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections/MultipleCollectionsViewController.m -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 Collections/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 Collections/main.m -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 CollectionsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 CollectionsTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/11. 3 CollectionsTests/_1__3_CollectionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/11. 3 CollectionsTests/_1__3_CollectionsTests.m -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/Podfile -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/11. 3 Collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/11. 3 Collections/README.md -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections/CollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections/CollectionViewController.h -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections/CollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections/CollectionViewController.m -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections/Info.plist -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With Sections/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With Sections/main.m -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With SectionsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With SectionsTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/12. Collections With SectionsTests/_2__Collections_With_SectionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/12. Collections With SectionsTests/_2__Collections_With_SectionsTests.m -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/Podfile -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/12. Collections With Sections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/12. Collections With Sections/README.md -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/Info.plist -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/TableViewController.h -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/TableViewController.m -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable Tables/main.m -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable TablesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable TablesTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/13. Moveable Editable TablesTests/_3__Moveable_Editable_TablesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/13. Moveable Editable TablesTests/_3__Moveable_Editable_TablesTests.m -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/Podfile -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/13. Moveable Editable Tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/13. Moveable Editable Tables/README.md -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/CollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/CollectionViewController.h -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/CollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/CollectionViewController.m -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/Info.plist -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/MoveableCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/MoveableCollectionViewCell.h -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/MoveableCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/MoveableCollectionViewCell.m -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/MoveableCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/MoveableCollectionViewCell.xib -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/icon_move_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/icon_move_arrow.png -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/icon_move_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/icon_move_arrow@2x.png -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item Decorations/main.m -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item DecorationsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item DecorationsTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/14. Draggable Item DecorationsTests/_4__Draggable_Item_DecorationsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/14. Draggable Item DecorationsTests/_4__Draggable_Item_DecorationsTests.m -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/Podfile -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/14. Draggable Item Decorations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/14. Draggable Item Decorations/README.md -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete/Info.plist -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete/TableViewController.h -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete/TableViewController.m -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm Delete/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm Delete/main.m -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm DeleteTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm DeleteTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/15. Confirm DeleteTests/_5__Confirm_DeleteTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/15. Confirm DeleteTests/_5__Confirm_DeleteTests.m -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/Podfile -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/15. Confirm Delete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/15. Confirm Delete/README.md -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/CustomRenderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/CustomRenderViewController.h -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/CustomRenderViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/CustomRenderViewController.m -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/FunkRenderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/FunkRenderDelegate.h -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/FunkRenderDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/FunkRenderDelegate.m -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/Info.plist -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/ViewController.h -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/ViewController.m -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render Delegate/main.m -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render DelegateTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render DelegateTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/16. Custom Render DelegateTests/_6__Custom_Render_DelegateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/16. Custom Render DelegateTests/_6__Custom_Render_DelegateTests.m -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/Podfile -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/16. Custom Render Delegate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/16. Custom Render Delegate/README.md -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/AvailableGistCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/AvailableGistCollectionViewCell.h -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/AvailableGistCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/AvailableGistCollectionViewCell.m -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/AvailableGistCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/AvailableGistCollectionViewCell.xib -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/Gist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/Gist.h -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/Gist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/Gist.m -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistCollectionViewCell.h -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistCollectionViewCell.m -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistCollectionViewCell.xib -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistService.h -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistService.m -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistViewController.h -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/GistViewController.m -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/Info.plist -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/Routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/Routing.h -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking Collections/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking Collections/main.m -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking CollectionsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking CollectionsTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/17. Async Networking CollectionsTests/_7__Async_Networking_CollectionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/17. Async Networking CollectionsTests/_7__Async_Networking_CollectionsTests.m -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/Podfile -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/17. Async Networking Collections/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/17. Async Networking Collections/README.md -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/Info.plist -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/Note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/Note.h -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/Note.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/Note.m -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/PaintMeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/PaintMeViewController.h -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/PaintMeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/PaintMeViewController.m -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint Me/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint Me/main.m -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint MeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint MeTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/18. Paint MeTests/_8__Paint_MeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/18. Paint MeTests/_8__Paint_MeTests.m -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/Podfile -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/18. Paint Me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/18. Paint Me/README.md -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/AbstractFormCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/AbstractFormCell.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/AbstractFormCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/AbstractFormCell.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FluidUIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FluidUIViewController.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FluidUIViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FluidUIViewController.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormButtonCell.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormButtonCell.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormButtonCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormButtonCell.xib -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormItem.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormItem.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormSwitchCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormSwitchCell.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormSwitchCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormSwitchCell.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormSwitchCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormSwitchCell.xib -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormTextAreaCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormTextAreaCell.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormTextAreaCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormTextAreaCell.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormTextAreaCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormTextAreaCell.xib -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormTextFieldCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormTextFieldCell.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormTextFieldCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormTextFieldCell.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/FormTextFieldCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/FormTextFieldCell.xib -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/Info.plist -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareButton.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareButton.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareSwitch.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareSwitch.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareTextField.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareTextField.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareTextView.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/ParentAwareTextView.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/ParentCellAware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/ParentCellAware.h -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_bell.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_bell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_bell@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_bomb.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_bomb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_bomb@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_bug.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_bug@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_bug@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_comments.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_comments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_comments@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_cube.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_cube@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_cube@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_move_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_move_arrow.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_move_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_move_arrow@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_button.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_button@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_switch.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_switch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_switch@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_text_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_text_area.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_text_area@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_text_area@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_text_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_text_field.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_text_field@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/icon_plus_text_field@2x.png -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UI/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UI/main.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UITests/Info.plist -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/19. Fluid UITests/_9__Fluid_UITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/19. Fluid UITests/_9__Fluid_UITests.m -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/Podfile -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/19. Fluid UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/19. Fluid UI/README.md -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift).xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift).xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/Info.plist -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/TableViewController.h -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/TableViewController.m -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)/main.m -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)Tests/Info.plist -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)Tests/___Rearrangeable_Table_View__Sift_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/2. Rearrangeable Table View (Sift)Tests/___Rearrangeable_Table_View__Sift_Tests.m -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/Podfile -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/2. Rearrangeable Table View (Sift)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/2. Rearrangeable Table View (Sift)/README.md -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/DetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/DetailViewController.h -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/DetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/DetailViewController.m -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/Info.plist -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/MasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/MasterViewController.h -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/MasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/MasterViewController.m -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View Controller/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View Controller/main.m -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View ControllerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View ControllerTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/20. Split View ControllerTests/_0__Split_View_ControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/20. Split View ControllerTests/_0__Split_View_ControllerTests.m -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/Podfile -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/20. Split View Controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/20. Split View Controller/README.md -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View/Info.plist -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View/TableViewController.h -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View/TableViewController.m -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table View/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table View/main.m -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table ViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table ViewTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/3. Deletable Table ViewTests/___Deletable_Table_ViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/3. Deletable Table ViewTests/___Deletable_Table_ViewTests.m -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/Podfile -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/3. Deletable Table View/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/3. Deletable Table View/README.md -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/Info.plist -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/TableViewController.h -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/TableViewController.m -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table Views/main.m -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table ViewsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table ViewsTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table ViewsTests/___2_Droppable_Table_ViewsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/4. 2 Droppable Table ViewsTests/___2_Droppable_Table_ViewsTests.m -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/Podfile -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/4. 2 Droppable Table Views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/4. 2 Droppable Table Views/README.md -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/Info.plist -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/TableViewController.h -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/TableViewController.m -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All Properties/main.m -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All PropertiesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All PropertiesTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All PropertiesTests/___2_Table_Views_All_PropertiesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/5. 2 Table Views All PropertiesTests/___2_Table_Views_All_PropertiesTests.m -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/Podfile -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/5. 2 Table Views All Properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/5. 2 Table Views All Properties/README.md -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange).xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange).xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/CollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/CollectionViewController.h -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/CollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/CollectionViewController.m -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/Info.plist -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)/main.m -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)Tests/Info.plist -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)Tests/___Rearrangeable_Collection_View__Exchange_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/6. Rearrangeable Collection View (Exchange)Tests/___Rearrangeable_Collection_View__Exchange_Tests.m -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/Podfile -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/6. Rearrangeable Collection View (Exchange)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/6. Rearrangeable Collection View (Exchange)/README.md -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift).xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift).xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/CollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/CollectionViewController.h -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/CollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/CollectionViewController.m -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/Info.plist -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)/main.m -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)Tests/Info.plist -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)Tests/___Rearrangeable_Collection_View__Sift_Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/7. Rearrangeable Collection View (Sift)Tests/___Rearrangeable_Collection_View__Sift_Tests.m -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/Podfile -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/7. Rearrangeable Collection View (Sift)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/7. Rearrangeable Collection View (Sift)/README.md -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection/CollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection/CollectionViewController.h -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection/CollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection/CollectionViewController.m -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection/Info.plist -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable Collection/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable Collection/main.m -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable CollectionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable CollectionTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/8. Deletable CollectionTests/___Deletable_CollectionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/8. Deletable CollectionTests/___Deletable_CollectionTests.m -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/Podfile -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/8. Deletable Collection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/8. Deletable Collection/README.md -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/AppDelegate.h -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/AppDelegate.m -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/CollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/CollectionViewController.h -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/CollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/CollectionViewController.m -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/Info.plist -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection Views/main.m -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection ViewsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection ViewsTests/Info.plist -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection ViewsTests/___2_Droppable_Collection_ViewsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/9. 2 Droppable Collection ViewsTests/___2_Droppable_Collection_ViewsTests.m -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/Podfile -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/Podfile.lock -------------------------------------------------------------------------------- /Use Cases/9. 2 Droppable Collection Views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/9. 2 Droppable Collection Views/README.md -------------------------------------------------------------------------------- /Use Cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/README.md -------------------------------------------------------------------------------- /Use Cases/Utilities/Classes/I3SimpleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/Utilities/Classes/I3SimpleData.h -------------------------------------------------------------------------------- /Use Cases/Utilities/Classes/I3SimpleData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/Utilities/Classes/I3SimpleData.m -------------------------------------------------------------------------------- /Use Cases/Utilities/Classes/I3SubtitleCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/Utilities/Classes/I3SubtitleCollectionViewCell.h -------------------------------------------------------------------------------- /Use Cases/Utilities/Classes/I3SubtitleCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/Utilities/Classes/I3SubtitleCollectionViewCell.m -------------------------------------------------------------------------------- /Use Cases/Utilities/Classes/I3SubtitleTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/Utilities/Classes/I3SubtitleTableViewCell.h -------------------------------------------------------------------------------- /Use Cases/Utilities/Classes/I3SubtitleTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/Utilities/Classes/I3SubtitleTableViewCell.m -------------------------------------------------------------------------------- /Use Cases/Utilities/Views/I3SubtitleCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ice3-software/between-kit/HEAD/Use Cases/Utilities/Views/I3SubtitleCollectionViewCell.xib --------------------------------------------------------------------------------