├── .gitignore ├── CocoaProgrammaticHowtoCollection.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── WorkspaceSettings.xcsettings ├── ComponentUsages ├── ApplicationMenu │ ├── ApplicationMenu.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ApplicationMenu.xcscheme │ └── main.swift ├── Bootstrapping │ ├── Bootstrapping.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Bootstrapping.xcscheme │ └── main.swift ├── BorderlessRoundWindowWithShadow │ ├── BorderlessRoundWindowWithShadow.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BorderlessRoundWindowWithShadow.xcscheme │ ├── ExampleApplicationController.swift │ ├── Info.plist │ └── main.swift ├── CollectionView │ ├── CollectionView.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── CollectionView.xcscheme │ └── main.swift ├── CustomNSTextViewWithNSTextStorage │ ├── CustomNSTextViewWithNSTextStorage.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── CustomNSTextViewWithNSTextStorage.xcscheme │ ├── ExampleApplicationController.swift │ ├── Info.plist │ └── main.swift ├── NSTableViewExample │ ├── NSTableViewExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── NSTableViewExample.xcscheme │ └── main.swift ├── NSTextViewWithCustomInactiveSelectionBackgroundColor │ ├── NSTextViewWithCustomInactiveSelectionBackgroundColor.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── NSTableViewExample.xcscheme │ └── main.swift ├── NSToolbar │ ├── NSToolbar.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── NSToolbar.xcscheme │ └── main.swift ├── OutlineViewExampleWithViewBasedTechnique │ ├── OutlineViewExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── OutlineViewExample.xcscheme │ └── main.swift ├── OutlineViewWithTreeController │ ├── OutlineViewWithTreeController.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── OutlineViewWithTreeController.xcscheme │ └── OutlineViewWithTreeController │ │ └── main.swift ├── RegularDarkVibrantWindow │ ├── ExampleApplicationController.swift │ ├── Info.plist │ ├── RegularDarkVibrantWindow.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── RegularDarkVibrantWindow.xcscheme │ └── main.swift ├── SplitViewExample │ ├── ExampleApplicationController.swift │ ├── Info.plist │ ├── SplitViewExample.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SplitViewExample.xcscheme │ └── main.swift ├── TextInput │ ├── TextInput.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── TextInput.xcscheme │ └── main.swift └── TextViewExample │ ├── ExampleApplicationController.swift │ ├── Info.plist │ ├── TextViewExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TextViewExample.xcscheme │ └── main.swift ├── ComponentUsagesInObjectiveC ├── Bootstrapping │ ├── Bootstrapping.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Bootstrapping.xcscheme │ └── main.m ├── FileDropIntoTableView │ ├── FileDropIntoTableView.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FileDropIntoTableView.xcscheme │ ├── README.md │ ├── TestWindowController.h │ ├── TestWindowController.m │ └── main.m ├── FileDropIntoView │ ├── BoilerplateWindowController.h │ ├── BoilerplateWindowController.m │ ├── DropTestView.h │ ├── DropTestView.m │ ├── FileDropIntoView.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── FileDropIntoView.xcscheme │ ├── README.md │ └── main.m ├── MainMenu │ ├── MainMenu.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── MainMenu.xcscheme │ └── main.m ├── MenuWithNoCommandKey │ ├── MenuWithNoCommandKey.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── MenuWithNoCommandKey.xcscheme │ └── main.m ├── OutlineView │ ├── OutlineView.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── OutlineView.xcscheme │ ├── README.md │ ├── TestNode.h │ ├── TestNode.m │ ├── TestWindowController.h │ ├── TestWindowController.m │ └── main.m ├── Quicklook │ ├── PREVIEW-EXAMPLE-TEXT-FILE.txt │ ├── Quicklook.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Quicklook.xcscheme │ ├── lena.png │ └── main.m └── ToolbarOnWindow │ ├── ToolbarOnWindow.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ToolbarOnWindow.xcscheme │ └── main.m ├── NonUIStuffsExamples └── BuildingUmbrellaFramework │ ├── App2 │ └── main.m │ ├── BuildingUmbrellaFramework.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── BuildingUmbrellaFramework.xccheckout │ │ │ └── umbrella_framework_buildup_trial1.xccheckout │ └── xcshareddata │ │ └── xcschemes │ │ ├── App2.xcscheme │ │ ├── F1.xcscheme │ │ ├── F2.xcscheme │ │ └── Umbrella1.xcscheme │ ├── F1 │ ├── F1.h │ └── F1.m │ ├── F2 │ ├── F2.h │ └── F2.m │ ├── README.md │ └── Umbrella1 │ ├── Umbrella1.h │ └── Umbrella1.m ├── README.md └── iOSExamples ├── AutoLayoutWithStackViewAndScrollView ├── AutoLayoutWithStackViewAndScrollView.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── AutoLayoutWithStackViewAndScrollView │ ├── AppDelegate.swift │ ├── ExampleViewController.swift │ ├── Info.plist │ └── UIKitExtensionsForAutoLayoutConvenience.swift ├── AutosizingTableExample ├── AppDelegate.swift ├── AutosizingTableExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── AutosizingTableTest1.xcscheme ├── ExampleTableViewController.swift └── Info.plist ├── CameraDisplay ├── CameraDisplay.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CameraDisplay.xcscheme ├── CameraDisplay │ ├── ApplicationController.swift │ ├── CameraManager.swift │ └── Info.plist └── Default-568h@2x.png ├── ResizingCollectionViewCellExample ├── AppDelegate.swift ├── Default-568h@2x.png └── ResizingCollectionViewCellExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ └── contents.xcworkspacedata ├── StackViewExample ├── Default-568h@2x.png ├── StackViewExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── StackViewExample │ ├── AppDelegate.swift │ └── Info.plist ├── StackViewWithAnimationExample ├── Default-568h@2x.png ├── StackViewExample │ ├── AppDelegate.swift │ └── Info.plist └── StackViewWithAnimationExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── StackViewWithAnimationExample.xcscheme ├── TextChatUIExample ├── Default-568h@2x.png ├── TextChatUIExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── TextChatUIExample │ ├── AppDelegate.swift │ ├── Cell1.swift │ ├── Conversation1.swift │ ├── Debug1.swift │ ├── Extensions1.swift │ ├── Info.plist │ ├── Input1.swift │ ├── KeyboardFrameTrackingController.swift │ ├── Layout1.swift │ ├── Utility1.swift │ ├── View1.swift │ ├── ViewController1.swift │ ├── ViewController2.swift │ └── ViewController3.swift └── UICollectionViewCustomLayout ├── AppDelegate.swift ├── Cell1.swift ├── Default-568h@2x.png ├── Extensions1.swift ├── Info.plist ├── Layout1.swift ├── UICollectionViewCustomLayout.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── ViewController1.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/.gitignore -------------------------------------------------------------------------------- /CocoaProgrammaticHowtoCollection.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/CocoaProgrammaticHowtoCollection.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CocoaProgrammaticHowtoCollection.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/CocoaProgrammaticHowtoCollection.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ComponentUsages/ApplicationMenu/ApplicationMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/ApplicationMenu/ApplicationMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/ApplicationMenu/ApplicationMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/ApplicationMenu/ApplicationMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/ApplicationMenu/ApplicationMenu.xcodeproj/xcshareddata/xcschemes/ApplicationMenu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/ApplicationMenu/ApplicationMenu.xcodeproj/xcshareddata/xcschemes/ApplicationMenu.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/ApplicationMenu/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/ApplicationMenu/main.swift -------------------------------------------------------------------------------- /ComponentUsages/Bootstrapping/Bootstrapping.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/Bootstrapping/Bootstrapping.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/Bootstrapping/Bootstrapping.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/Bootstrapping/Bootstrapping.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/Bootstrapping/Bootstrapping.xcodeproj/xcshareddata/xcschemes/Bootstrapping.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/Bootstrapping/Bootstrapping.xcodeproj/xcshareddata/xcschemes/Bootstrapping.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/Bootstrapping/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/Bootstrapping/main.swift -------------------------------------------------------------------------------- /ComponentUsages/BorderlessRoundWindowWithShadow/BorderlessRoundWindowWithShadow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/BorderlessRoundWindowWithShadow/BorderlessRoundWindowWithShadow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/BorderlessRoundWindowWithShadow/BorderlessRoundWindowWithShadow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/BorderlessRoundWindowWithShadow/BorderlessRoundWindowWithShadow.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/BorderlessRoundWindowWithShadow/BorderlessRoundWindowWithShadow.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/BorderlessRoundWindowWithShadow/BorderlessRoundWindowWithShadow.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ComponentUsages/BorderlessRoundWindowWithShadow/BorderlessRoundWindowWithShadow.xcodeproj/xcshareddata/xcschemes/BorderlessRoundWindowWithShadow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/BorderlessRoundWindowWithShadow/BorderlessRoundWindowWithShadow.xcodeproj/xcshareddata/xcschemes/BorderlessRoundWindowWithShadow.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/BorderlessRoundWindowWithShadow/ExampleApplicationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/BorderlessRoundWindowWithShadow/ExampleApplicationController.swift -------------------------------------------------------------------------------- /ComponentUsages/BorderlessRoundWindowWithShadow/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/BorderlessRoundWindowWithShadow/Info.plist -------------------------------------------------------------------------------- /ComponentUsages/BorderlessRoundWindowWithShadow/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/BorderlessRoundWindowWithShadow/main.swift -------------------------------------------------------------------------------- /ComponentUsages/CollectionView/CollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CollectionView/CollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/CollectionView/CollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CollectionView/CollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/CollectionView/CollectionView.xcodeproj/xcshareddata/xcschemes/CollectionView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CollectionView/CollectionView.xcodeproj/xcshareddata/xcschemes/CollectionView.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/CollectionView/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CollectionView/main.swift -------------------------------------------------------------------------------- /ComponentUsages/CustomNSTextViewWithNSTextStorage/CustomNSTextViewWithNSTextStorage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CustomNSTextViewWithNSTextStorage/CustomNSTextViewWithNSTextStorage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/CustomNSTextViewWithNSTextStorage/CustomNSTextViewWithNSTextStorage.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CustomNSTextViewWithNSTextStorage/CustomNSTextViewWithNSTextStorage.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/CustomNSTextViewWithNSTextStorage/CustomNSTextViewWithNSTextStorage.xcodeproj/xcshareddata/xcschemes/CustomNSTextViewWithNSTextStorage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CustomNSTextViewWithNSTextStorage/CustomNSTextViewWithNSTextStorage.xcodeproj/xcshareddata/xcschemes/CustomNSTextViewWithNSTextStorage.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/CustomNSTextViewWithNSTextStorage/ExampleApplicationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CustomNSTextViewWithNSTextStorage/ExampleApplicationController.swift -------------------------------------------------------------------------------- /ComponentUsages/CustomNSTextViewWithNSTextStorage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CustomNSTextViewWithNSTextStorage/Info.plist -------------------------------------------------------------------------------- /ComponentUsages/CustomNSTextViewWithNSTextStorage/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/CustomNSTextViewWithNSTextStorage/main.swift -------------------------------------------------------------------------------- /ComponentUsages/NSTableViewExample/NSTableViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSTableViewExample/NSTableViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/NSTableViewExample/NSTableViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSTableViewExample/NSTableViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/NSTableViewExample/NSTableViewExample.xcodeproj/xcshareddata/xcschemes/NSTableViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSTableViewExample/NSTableViewExample.xcodeproj/xcshareddata/xcschemes/NSTableViewExample.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/NSTableViewExample/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSTableViewExample/main.swift -------------------------------------------------------------------------------- /ComponentUsages/NSTextViewWithCustomInactiveSelectionBackgroundColor/NSTextViewWithCustomInactiveSelectionBackgroundColor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSTextViewWithCustomInactiveSelectionBackgroundColor/NSTextViewWithCustomInactiveSelectionBackgroundColor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/NSTextViewWithCustomInactiveSelectionBackgroundColor/NSTextViewWithCustomInactiveSelectionBackgroundColor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSTextViewWithCustomInactiveSelectionBackgroundColor/NSTextViewWithCustomInactiveSelectionBackgroundColor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/NSTextViewWithCustomInactiveSelectionBackgroundColor/NSTextViewWithCustomInactiveSelectionBackgroundColor.xcodeproj/xcshareddata/xcschemes/NSTableViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSTextViewWithCustomInactiveSelectionBackgroundColor/NSTextViewWithCustomInactiveSelectionBackgroundColor.xcodeproj/xcshareddata/xcschemes/NSTableViewExample.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/NSTextViewWithCustomInactiveSelectionBackgroundColor/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSTextViewWithCustomInactiveSelectionBackgroundColor/main.swift -------------------------------------------------------------------------------- /ComponentUsages/NSToolbar/NSToolbar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSToolbar/NSToolbar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/NSToolbar/NSToolbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSToolbar/NSToolbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/NSToolbar/NSToolbar.xcodeproj/xcshareddata/xcschemes/NSToolbar.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSToolbar/NSToolbar.xcodeproj/xcshareddata/xcschemes/NSToolbar.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/NSToolbar/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/NSToolbar/main.swift -------------------------------------------------------------------------------- /ComponentUsages/OutlineViewExampleWithViewBasedTechnique/OutlineViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/OutlineViewExampleWithViewBasedTechnique/OutlineViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/OutlineViewExampleWithViewBasedTechnique/OutlineViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/OutlineViewExampleWithViewBasedTechnique/OutlineViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/OutlineViewExampleWithViewBasedTechnique/OutlineViewExample.xcodeproj/xcshareddata/xcschemes/OutlineViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/OutlineViewExampleWithViewBasedTechnique/OutlineViewExample.xcodeproj/xcshareddata/xcschemes/OutlineViewExample.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/OutlineViewExampleWithViewBasedTechnique/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/OutlineViewExampleWithViewBasedTechnique/main.swift -------------------------------------------------------------------------------- /ComponentUsages/OutlineViewWithTreeController/OutlineViewWithTreeController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/OutlineViewWithTreeController/OutlineViewWithTreeController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/OutlineViewWithTreeController/OutlineViewWithTreeController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/OutlineViewWithTreeController/OutlineViewWithTreeController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/OutlineViewWithTreeController/OutlineViewWithTreeController.xcodeproj/xcshareddata/xcschemes/OutlineViewWithTreeController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/OutlineViewWithTreeController/OutlineViewWithTreeController.xcodeproj/xcshareddata/xcschemes/OutlineViewWithTreeController.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/OutlineViewWithTreeController/OutlineViewWithTreeController/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/OutlineViewWithTreeController/OutlineViewWithTreeController/main.swift -------------------------------------------------------------------------------- /ComponentUsages/RegularDarkVibrantWindow/ExampleApplicationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/RegularDarkVibrantWindow/ExampleApplicationController.swift -------------------------------------------------------------------------------- /ComponentUsages/RegularDarkVibrantWindow/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/RegularDarkVibrantWindow/Info.plist -------------------------------------------------------------------------------- /ComponentUsages/RegularDarkVibrantWindow/RegularDarkVibrantWindow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/RegularDarkVibrantWindow/RegularDarkVibrantWindow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/RegularDarkVibrantWindow/RegularDarkVibrantWindow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/RegularDarkVibrantWindow/RegularDarkVibrantWindow.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/RegularDarkVibrantWindow/RegularDarkVibrantWindow.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/RegularDarkVibrantWindow/RegularDarkVibrantWindow.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ComponentUsages/RegularDarkVibrantWindow/RegularDarkVibrantWindow.xcodeproj/xcshareddata/xcschemes/RegularDarkVibrantWindow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/RegularDarkVibrantWindow/RegularDarkVibrantWindow.xcodeproj/xcshareddata/xcschemes/RegularDarkVibrantWindow.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/RegularDarkVibrantWindow/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/RegularDarkVibrantWindow/main.swift -------------------------------------------------------------------------------- /ComponentUsages/SplitViewExample/ExampleApplicationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/SplitViewExample/ExampleApplicationController.swift -------------------------------------------------------------------------------- /ComponentUsages/SplitViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/SplitViewExample/Info.plist -------------------------------------------------------------------------------- /ComponentUsages/SplitViewExample/SplitViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/SplitViewExample/SplitViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/SplitViewExample/SplitViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/SplitViewExample/SplitViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/SplitViewExample/SplitViewExample.xcodeproj/xcshareddata/xcschemes/SplitViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/SplitViewExample/SplitViewExample.xcodeproj/xcshareddata/xcschemes/SplitViewExample.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/SplitViewExample/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/SplitViewExample/main.swift -------------------------------------------------------------------------------- /ComponentUsages/TextInput/TextInput.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextInput/TextInput.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/TextInput/TextInput.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextInput/TextInput.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/TextInput/TextInput.xcodeproj/xcshareddata/xcschemes/TextInput.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextInput/TextInput.xcodeproj/xcshareddata/xcschemes/TextInput.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/TextInput/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextInput/main.swift -------------------------------------------------------------------------------- /ComponentUsages/TextViewExample/ExampleApplicationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextViewExample/ExampleApplicationController.swift -------------------------------------------------------------------------------- /ComponentUsages/TextViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextViewExample/Info.plist -------------------------------------------------------------------------------- /ComponentUsages/TextViewExample/TextViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextViewExample/TextViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsages/TextViewExample/TextViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextViewExample/TextViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsages/TextViewExample/TextViewExample.xcodeproj/xcshareddata/xcschemes/TextViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextViewExample/TextViewExample.xcodeproj/xcshareddata/xcschemes/TextViewExample.xcscheme -------------------------------------------------------------------------------- /ComponentUsages/TextViewExample/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsages/TextViewExample/main.swift -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Bootstrapping/Bootstrapping.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/Bootstrapping/Bootstrapping.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Bootstrapping/Bootstrapping.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/Bootstrapping/Bootstrapping.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Bootstrapping/Bootstrapping.xcodeproj/xcshareddata/xcschemes/Bootstrapping.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/Bootstrapping/Bootstrapping.xcodeproj/xcshareddata/xcschemes/Bootstrapping.xcscheme -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Bootstrapping/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/Bootstrapping/main.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoTableView/FileDropIntoTableView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoTableView/FileDropIntoTableView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoTableView/FileDropIntoTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoTableView/FileDropIntoTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoTableView/FileDropIntoTableView.xcodeproj/xcshareddata/xcschemes/FileDropIntoTableView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoTableView/FileDropIntoTableView.xcodeproj/xcshareddata/xcschemes/FileDropIntoTableView.xcscheme -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoTableView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoTableView/README.md -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoTableView/TestWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoTableView/TestWindowController.h -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoTableView/TestWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoTableView/TestWindowController.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoTableView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoTableView/main.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoView/BoilerplateWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoView/BoilerplateWindowController.h -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoView/BoilerplateWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoView/BoilerplateWindowController.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoView/DropTestView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoView/DropTestView.h -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoView/DropTestView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoView/DropTestView.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoView/FileDropIntoView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoView/FileDropIntoView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoView/FileDropIntoView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoView/FileDropIntoView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoView/FileDropIntoView.xcodeproj/xcshareddata/xcschemes/FileDropIntoView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoView/FileDropIntoView.xcodeproj/xcshareddata/xcschemes/FileDropIntoView.xcscheme -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoView/README.md -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/FileDropIntoView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/FileDropIntoView/main.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/MainMenu/MainMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/MainMenu/MainMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/MainMenu/MainMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/MainMenu/MainMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/MainMenu/MainMenu.xcodeproj/xcshareddata/xcschemes/MainMenu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/MainMenu/MainMenu.xcodeproj/xcshareddata/xcschemes/MainMenu.xcscheme -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/MainMenu/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/MainMenu/main.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/MenuWithNoCommandKey/MenuWithNoCommandKey.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/MenuWithNoCommandKey/MenuWithNoCommandKey.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/MenuWithNoCommandKey/MenuWithNoCommandKey.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/MenuWithNoCommandKey/MenuWithNoCommandKey.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/MenuWithNoCommandKey/MenuWithNoCommandKey.xcodeproj/xcshareddata/xcschemes/MenuWithNoCommandKey.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/MenuWithNoCommandKey/MenuWithNoCommandKey.xcodeproj/xcshareddata/xcschemes/MenuWithNoCommandKey.xcscheme -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/MenuWithNoCommandKey/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/MenuWithNoCommandKey/main.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/OutlineView/OutlineView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/OutlineView/OutlineView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/OutlineView/OutlineView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/OutlineView/OutlineView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/OutlineView/OutlineView.xcodeproj/xcshareddata/xcschemes/OutlineView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/OutlineView/OutlineView.xcodeproj/xcshareddata/xcschemes/OutlineView.xcscheme -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/OutlineView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/OutlineView/README.md -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/OutlineView/TestNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/OutlineView/TestNode.h -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/OutlineView/TestNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/OutlineView/TestNode.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/OutlineView/TestWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/OutlineView/TestWindowController.h -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/OutlineView/TestWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/OutlineView/TestWindowController.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/OutlineView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/OutlineView/main.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Quicklook/PREVIEW-EXAMPLE-TEXT-FILE.txt: -------------------------------------------------------------------------------- 1 | Test OK! 2 | -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Quicklook/Quicklook.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/Quicklook/Quicklook.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Quicklook/Quicklook.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/Quicklook/Quicklook.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Quicklook/Quicklook.xcodeproj/xcshareddata/xcschemes/Quicklook.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/Quicklook/Quicklook.xcodeproj/xcshareddata/xcschemes/Quicklook.xcscheme -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Quicklook/lena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/Quicklook/lena.png -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/Quicklook/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/Quicklook/main.m -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/ToolbarOnWindow/ToolbarOnWindow.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/ToolbarOnWindow/ToolbarOnWindow.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/ToolbarOnWindow/ToolbarOnWindow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/ToolbarOnWindow/ToolbarOnWindow.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/ToolbarOnWindow/ToolbarOnWindow.xcodeproj/xcshareddata/xcschemes/ToolbarOnWindow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/ToolbarOnWindow/ToolbarOnWindow.xcodeproj/xcshareddata/xcschemes/ToolbarOnWindow.xcscheme -------------------------------------------------------------------------------- /ComponentUsagesInObjectiveC/ToolbarOnWindow/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/ComponentUsagesInObjectiveC/ToolbarOnWindow/main.m -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/App2/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/App2/main.m -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/project.xcworkspace/xcshareddata/BuildingUmbrellaFramework.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/project.xcworkspace/xcshareddata/BuildingUmbrellaFramework.xccheckout -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/project.xcworkspace/xcshareddata/umbrella_framework_buildup_trial1.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/project.xcworkspace/xcshareddata/umbrella_framework_buildup_trial1.xccheckout -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/xcshareddata/xcschemes/App2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/xcshareddata/xcschemes/App2.xcscheme -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/xcshareddata/xcschemes/F1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/xcshareddata/xcschemes/F1.xcscheme -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/xcshareddata/xcschemes/F2.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/xcshareddata/xcschemes/F2.xcscheme -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/xcshareddata/xcschemes/Umbrella1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/BuildingUmbrellaFramework.xcodeproj/xcshareddata/xcschemes/Umbrella1.xcscheme -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/F1/F1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/F1/F1.h -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/F1/F1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/F1/F1.m -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/F2/F2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/F2/F2.h -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/F2/F2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/F2/F2.m -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/README.md -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/Umbrella1/Umbrella1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/Umbrella1/Umbrella1.h -------------------------------------------------------------------------------- /NonUIStuffsExamples/BuildingUmbrellaFramework/Umbrella1/Umbrella1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/NonUIStuffsExamples/BuildingUmbrellaFramework/Umbrella1/Umbrella1.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/README.md -------------------------------------------------------------------------------- /iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView/AppDelegate.swift -------------------------------------------------------------------------------- /iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView/ExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView/ExampleViewController.swift -------------------------------------------------------------------------------- /iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView/Info.plist -------------------------------------------------------------------------------- /iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView/UIKitExtensionsForAutoLayoutConvenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutoLayoutWithStackViewAndScrollView/AutoLayoutWithStackViewAndScrollView/UIKitExtensionsForAutoLayoutConvenience.swift -------------------------------------------------------------------------------- /iOSExamples/AutosizingTableExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutosizingTableExample/AppDelegate.swift -------------------------------------------------------------------------------- /iOSExamples/AutosizingTableExample/AutosizingTableExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutosizingTableExample/AutosizingTableExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSExamples/AutosizingTableExample/AutosizingTableExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutosizingTableExample/AutosizingTableExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSExamples/AutosizingTableExample/AutosizingTableExample.xcodeproj/xcshareddata/xcschemes/AutosizingTableTest1.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutosizingTableExample/AutosizingTableExample.xcodeproj/xcshareddata/xcschemes/AutosizingTableTest1.xcscheme -------------------------------------------------------------------------------- /iOSExamples/AutosizingTableExample/ExampleTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutosizingTableExample/ExampleTableViewController.swift -------------------------------------------------------------------------------- /iOSExamples/AutosizingTableExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/AutosizingTableExample/Info.plist -------------------------------------------------------------------------------- /iOSExamples/CameraDisplay/CameraDisplay.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/CameraDisplay/CameraDisplay.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSExamples/CameraDisplay/CameraDisplay.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/CameraDisplay/CameraDisplay.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSExamples/CameraDisplay/CameraDisplay.xcodeproj/xcshareddata/xcschemes/CameraDisplay.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/CameraDisplay/CameraDisplay.xcodeproj/xcshareddata/xcschemes/CameraDisplay.xcscheme -------------------------------------------------------------------------------- /iOSExamples/CameraDisplay/CameraDisplay/ApplicationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/CameraDisplay/CameraDisplay/ApplicationController.swift -------------------------------------------------------------------------------- /iOSExamples/CameraDisplay/CameraDisplay/CameraManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/CameraDisplay/CameraDisplay/CameraManager.swift -------------------------------------------------------------------------------- /iOSExamples/CameraDisplay/CameraDisplay/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/CameraDisplay/CameraDisplay/Info.plist -------------------------------------------------------------------------------- /iOSExamples/CameraDisplay/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/CameraDisplay/Default-568h@2x.png -------------------------------------------------------------------------------- /iOSExamples/ResizingCollectionViewCellExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/ResizingCollectionViewCellExample/AppDelegate.swift -------------------------------------------------------------------------------- /iOSExamples/ResizingCollectionViewCellExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/ResizingCollectionViewCellExample/Default-568h@2x.png -------------------------------------------------------------------------------- /iOSExamples/ResizingCollectionViewCellExample/ResizingCollectionViewCellExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/ResizingCollectionViewCellExample/ResizingCollectionViewCellExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSExamples/ResizingCollectionViewCellExample/ResizingCollectionViewCellExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/ResizingCollectionViewCellExample/ResizingCollectionViewCellExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSExamples/StackViewExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewExample/Default-568h@2x.png -------------------------------------------------------------------------------- /iOSExamples/StackViewExample/StackViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewExample/StackViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSExamples/StackViewExample/StackViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewExample/StackViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSExamples/StackViewExample/StackViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewExample/StackViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /iOSExamples/StackViewExample/StackViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewExample/StackViewExample/Info.plist -------------------------------------------------------------------------------- /iOSExamples/StackViewWithAnimationExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewWithAnimationExample/Default-568h@2x.png -------------------------------------------------------------------------------- /iOSExamples/StackViewWithAnimationExample/StackViewExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewWithAnimationExample/StackViewExample/AppDelegate.swift -------------------------------------------------------------------------------- /iOSExamples/StackViewWithAnimationExample/StackViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewWithAnimationExample/StackViewExample/Info.plist -------------------------------------------------------------------------------- /iOSExamples/StackViewWithAnimationExample/StackViewWithAnimationExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewWithAnimationExample/StackViewWithAnimationExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSExamples/StackViewWithAnimationExample/StackViewWithAnimationExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewWithAnimationExample/StackViewWithAnimationExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSExamples/StackViewWithAnimationExample/StackViewWithAnimationExample.xcodeproj/xcshareddata/xcschemes/StackViewWithAnimationExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/StackViewWithAnimationExample/StackViewWithAnimationExample.xcodeproj/xcshareddata/xcschemes/StackViewWithAnimationExample.xcscheme -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/Default-568h@2x.png -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/AppDelegate.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/Cell1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/Cell1.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/Conversation1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/Conversation1.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/Debug1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/Debug1.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/Extensions1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/Extensions1.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/Info.plist -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/Input1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/Input1.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/KeyboardFrameTrackingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/KeyboardFrameTrackingController.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/Layout1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/Layout1.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/Utility1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/Utility1.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/View1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/View1.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/ViewController1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/ViewController1.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/ViewController2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/ViewController2.swift -------------------------------------------------------------------------------- /iOSExamples/TextChatUIExample/TextChatUIExample/ViewController3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/TextChatUIExample/TextChatUIExample/ViewController3.swift -------------------------------------------------------------------------------- /iOSExamples/UICollectionViewCustomLayout/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/UICollectionViewCustomLayout/AppDelegate.swift -------------------------------------------------------------------------------- /iOSExamples/UICollectionViewCustomLayout/Cell1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/UICollectionViewCustomLayout/Cell1.swift -------------------------------------------------------------------------------- /iOSExamples/UICollectionViewCustomLayout/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/UICollectionViewCustomLayout/Default-568h@2x.png -------------------------------------------------------------------------------- /iOSExamples/UICollectionViewCustomLayout/Extensions1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/UICollectionViewCustomLayout/Extensions1.swift -------------------------------------------------------------------------------- /iOSExamples/UICollectionViewCustomLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/UICollectionViewCustomLayout/Info.plist -------------------------------------------------------------------------------- /iOSExamples/UICollectionViewCustomLayout/Layout1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/UICollectionViewCustomLayout/Layout1.swift -------------------------------------------------------------------------------- /iOSExamples/UICollectionViewCustomLayout/UICollectionViewCustomLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/UICollectionViewCustomLayout/UICollectionViewCustomLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSExamples/UICollectionViewCustomLayout/UICollectionViewCustomLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/UICollectionViewCustomLayout/UICollectionViewCustomLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSExamples/UICollectionViewCustomLayout/ViewController1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eonil/CocoaProgrammaticHowtoCollection/HEAD/iOSExamples/UICollectionViewCustomLayout/ViewController1.swift --------------------------------------------------------------------------------