├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── Ketan.Chopda.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── Target Support Files │ └── Pods-SSPlaceHolderTableView │ ├── Pods-SSPlaceHolderTableView-Info.plist │ ├── Pods-SSPlaceHolderTableView-dummy.m │ ├── Pods-SSPlaceHolderTableView-umbrella.h │ ├── Pods-SSPlaceHolderTableView.debug.xcconfig │ ├── Pods-SSPlaceHolderTableView.modulemap │ └── Pods-SSPlaceHolderTableView.release.xcconfig ├── README.md ├── SSPlaceHolderTableView.podspec ├── SSPlaceHolderTableView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── Ketan.Chopda.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── SSPlaceHolderTableView.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── Ketan.Chopda.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── SSPlaceHolderTableView ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── loading.imageset │ │ ├── Contents.json │ │ └── loading.pdf │ ├── noData.imageset │ │ ├── Contents.json │ │ └── no data.pdf │ └── noInternet.imageset │ │ ├── Contents.json │ │ └── no wifi.pdf ├── Base.lproj │ └── LaunchScreen.storyboard ├── Example │ ├── Base.lproj │ │ └── Main.storyboard │ ├── DataAvailablePlaceholderTableView.swift │ ├── DataUnAvailablePlaceholderTableView.swift │ ├── ExampleListViewController.swift │ ├── FullStateIn1VIewController │ │ ├── CollectionViewFullDemo.swift │ │ └── TableVIewFullDemo.swift │ ├── LoadingTableView.swift │ └── NoInternetPlaceholder.swift ├── Info.plist ├── Library │ ├── CollectionView.swift │ ├── Extensions.swift │ ├── LoadingView.swift │ ├── NetworkUnavailableView.swift │ ├── NoDataView.swift │ ├── Reachability.swift │ └── TableView.swift ├── ScreenShot │ ├── CollectionView.png │ └── TableView.png └── XIB │ ├── LoadingView.xib │ ├── NetworkUnavailableView.xib │ └── NoDataView.xib └── docs ├── Classes.html ├── Classes ├── AppDelegate.html ├── CollectionView.html ├── LoadingView.html ├── NetworkUnavailableView.html ├── NoDataView.html ├── Reachability.html ├── Reachability │ └── Connection.html ├── TableView.html ├── ViewController.html └── ViewController2.html ├── Enums.html ├── Enums ├── ReachabilityError.html └── SSPlaceHolderStates.html ├── Extensions.html ├── Extensions ├── NSLayoutConstraint.html ├── Notification.html ├── Notification │ └── Name.html ├── SCNetworkReachabilityFlags.html └── String.html ├── Global Variables.html ├── Protocols.html ├── Protocols └── networkRechabilityProtocol.html ├── badge.svg ├── css ├── highlight.css └── jazzy.css ├── docsets ├── .docset │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Documents │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── AppDelegate.html │ │ │ ├── CollectionView.html │ │ │ ├── LoadingView.html │ │ │ ├── NetworkUnavailableView.html │ │ │ ├── NoDataView.html │ │ │ ├── Reachability.html │ │ │ ├── Reachability │ │ │ │ └── Connection.html │ │ │ ├── TableView.html │ │ │ ├── ViewController.html │ │ │ └── ViewController2.html │ │ ├── Enums.html │ │ ├── Enums │ │ │ ├── ReachabilityError.html │ │ │ └── SSPlaceHolderStates.html │ │ ├── Extensions.html │ │ ├── Extensions │ │ │ ├── NSLayoutConstraint.html │ │ │ ├── Notification.html │ │ │ ├── Notification │ │ │ │ └── Name.html │ │ │ ├── SCNetworkReachabilityFlags.html │ │ │ └── String.html │ │ ├── Global Variables.html │ │ ├── Protocols.html │ │ ├── Protocols │ │ │ └── networkRechabilityProtocol.html │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ └── gh.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ └── jquery.min.js │ │ └── search.json │ │ └── docSet.dsidx └── .tgz ├── img ├── carat.png ├── dash.png └── gh.png ├── index.html ├── js ├── jazzy.js └── jquery.min.js ├── search.json └── undocumented.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODFILE CHECKSUM: e0e15e8dc0b1797eb7a6b78958e56435c8214162 2 | 3 | COCOAPODS: 1.7.3 4 | -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODFILE CHECKSUM: e0e15e8dc0b1797eb7a6b78958e56435c8214162 2 | 3 | COCOAPODS: 1.7.3 4 | -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Ketan.Chopda.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/Pods/Pods.xcodeproj/xcuserdata/Ketan.Chopda.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/Pods/Target Support Files/Pods-SSPlaceHolderTableView/Pods-SSPlaceHolderTableView.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/README.md -------------------------------------------------------------------------------- /SSPlaceHolderTableView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView.podspec -------------------------------------------------------------------------------- /SSPlaceHolderTableView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SSPlaceHolderTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SSPlaceHolderTableView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SSPlaceHolderTableView.xcodeproj/xcuserdata/Ketan.Chopda.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView.xcodeproj/xcuserdata/Ketan.Chopda.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SSPlaceHolderTableView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SSPlaceHolderTableView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SSPlaceHolderTableView.xcworkspace/xcuserdata/Ketan.Chopda.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView.xcworkspace/xcuserdata/Ketan.Chopda.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SSPlaceHolderTableView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/AppDelegate.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Assets.xcassets/loading.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Assets.xcassets/loading.imageset/Contents.json -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Assets.xcassets/loading.imageset/loading.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Assets.xcassets/loading.imageset/loading.pdf -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Assets.xcassets/noData.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Assets.xcassets/noData.imageset/Contents.json -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Assets.xcassets/noData.imageset/no data.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Assets.xcassets/noData.imageset/no data.pdf -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Assets.xcassets/noInternet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Assets.xcassets/noInternet.imageset/Contents.json -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Assets.xcassets/noInternet.imageset/no wifi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Assets.xcassets/noInternet.imageset/no wifi.pdf -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Example/DataAvailablePlaceholderTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Example/DataAvailablePlaceholderTableView.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Example/DataUnAvailablePlaceholderTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Example/DataUnAvailablePlaceholderTableView.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Example/ExampleListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Example/ExampleListViewController.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Example/FullStateIn1VIewController/CollectionViewFullDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Example/FullStateIn1VIewController/CollectionViewFullDemo.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Example/FullStateIn1VIewController/TableVIewFullDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Example/FullStateIn1VIewController/TableVIewFullDemo.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Example/LoadingTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Example/LoadingTableView.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Example/NoInternetPlaceholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Example/NoInternetPlaceholder.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Info.plist -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Library/CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Library/CollectionView.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Library/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Library/Extensions.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Library/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Library/LoadingView.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Library/NetworkUnavailableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Library/NetworkUnavailableView.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Library/NoDataView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Library/NoDataView.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Library/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Library/Reachability.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/Library/TableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/Library/TableView.swift -------------------------------------------------------------------------------- /SSPlaceHolderTableView/ScreenShot/CollectionView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/ScreenShot/CollectionView.png -------------------------------------------------------------------------------- /SSPlaceHolderTableView/ScreenShot/TableView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/ScreenShot/TableView.png -------------------------------------------------------------------------------- /SSPlaceHolderTableView/XIB/LoadingView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/XIB/LoadingView.xib -------------------------------------------------------------------------------- /SSPlaceHolderTableView/XIB/NetworkUnavailableView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/XIB/NetworkUnavailableView.xib -------------------------------------------------------------------------------- /SSPlaceHolderTableView/XIB/NoDataView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/SSPlaceHolderTableView/XIB/NoDataView.xib -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/AppDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/AppDelegate.html -------------------------------------------------------------------------------- /docs/Classes/CollectionView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/CollectionView.html -------------------------------------------------------------------------------- /docs/Classes/LoadingView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/LoadingView.html -------------------------------------------------------------------------------- /docs/Classes/NetworkUnavailableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/NetworkUnavailableView.html -------------------------------------------------------------------------------- /docs/Classes/NoDataView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/NoDataView.html -------------------------------------------------------------------------------- /docs/Classes/Reachability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/Reachability.html -------------------------------------------------------------------------------- /docs/Classes/Reachability/Connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/Reachability/Connection.html -------------------------------------------------------------------------------- /docs/Classes/TableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/TableView.html -------------------------------------------------------------------------------- /docs/Classes/ViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/ViewController.html -------------------------------------------------------------------------------- /docs/Classes/ViewController2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Classes/ViewController2.html -------------------------------------------------------------------------------- /docs/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Enums.html -------------------------------------------------------------------------------- /docs/Enums/ReachabilityError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Enums/ReachabilityError.html -------------------------------------------------------------------------------- /docs/Enums/SSPlaceHolderStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Enums/SSPlaceHolderStates.html -------------------------------------------------------------------------------- /docs/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Extensions.html -------------------------------------------------------------------------------- /docs/Extensions/NSLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Extensions/NSLayoutConstraint.html -------------------------------------------------------------------------------- /docs/Extensions/Notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Extensions/Notification.html -------------------------------------------------------------------------------- /docs/Extensions/Notification/Name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Extensions/Notification/Name.html -------------------------------------------------------------------------------- /docs/Extensions/SCNetworkReachabilityFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Extensions/SCNetworkReachabilityFlags.html -------------------------------------------------------------------------------- /docs/Extensions/String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Extensions/String.html -------------------------------------------------------------------------------- /docs/Global Variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Global Variables.html -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/networkRechabilityProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/Protocols/networkRechabilityProtocol.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/AppDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/AppDelegate.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/CollectionView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/CollectionView.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/LoadingView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/LoadingView.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/NetworkUnavailableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/NetworkUnavailableView.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/NoDataView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/NoDataView.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/Reachability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/Reachability.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/Reachability/Connection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/Reachability/Connection.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/TableView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/TableView.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/ViewController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/ViewController.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Classes/ViewController2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Classes/ViewController2.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Enums.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Enums/ReachabilityError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Enums/ReachabilityError.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Enums/SSPlaceHolderStates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Enums/SSPlaceHolderStates.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Extensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Extensions.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Extensions/NSLayoutConstraint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Extensions/NSLayoutConstraint.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Extensions/Notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Extensions/Notification.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Extensions/Notification/Name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Extensions/Notification/Name.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Extensions/SCNetworkReachabilityFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Extensions/SCNetworkReachabilityFlags.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Extensions/String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Extensions/String.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Global Variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Global Variables.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/Protocols/networkRechabilityProtocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/Protocols/networkRechabilityProtocol.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/docsets/.tgz -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSPlaceHolderTableView/HEAD/docs/undocumented.json --------------------------------------------------------------------------------