├── .gitignore ├── JMStaticContentTableViewController.podspec ├── JMStaticContentTableViewController ├── JMStaticContentTableViewBlocks.h ├── JMStaticContentTableViewCell.h ├── JMStaticContentTableViewCell.m ├── JMStaticContentTableViewController.h ├── JMStaticContentTableViewController.m ├── JMStaticContentTableViewSection.h ├── JMStaticContentTableViewSection.m ├── JMStaticContentTextFieldTableViewCell.h └── JMStaticContentTextFieldTableViewCell.m ├── MIT-LICENSE ├── README.md └── SettingsExample ├── SettingsExample.xcodeproj └── project.pbxproj └── SettingsExample ├── AppDelegate.h ├── AppDelegate.m ├── Images ├── AirplaneMode.png ├── AppStore.png ├── Brightness.png ├── General.png ├── Mail.png ├── Mail@2x.png ├── Messages.png ├── Music.png ├── Notes.png ├── Notifications.png ├── Notifications@2x.png ├── Phone.png ├── Photos.png ├── Photos@2x.png ├── Safari.png ├── Sounds.png ├── UIPreferencesBlueCheck.png ├── UIPreferencesBlueCheck@2x.png └── Video.png ├── NotificationsViewController.h ├── NotificationsViewController.m ├── SettingsExample-Info.plist ├── SettingsExample-Prefix.pch ├── SettingsViewController.h ├── SettingsViewController.m ├── WifiNetwork.h ├── WifiNetwork.m ├── WifiNetworkTableViewCell.h ├── WifiNetworkTableViewCell.m ├── WifiViewController.h ├── WifiViewController.m ├── en.lproj └── InfoPlist.strings └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/.gitignore -------------------------------------------------------------------------------- /JMStaticContentTableViewController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController.podspec -------------------------------------------------------------------------------- /JMStaticContentTableViewController/JMStaticContentTableViewBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController/JMStaticContentTableViewBlocks.h -------------------------------------------------------------------------------- /JMStaticContentTableViewController/JMStaticContentTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController/JMStaticContentTableViewCell.h -------------------------------------------------------------------------------- /JMStaticContentTableViewController/JMStaticContentTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController/JMStaticContentTableViewCell.m -------------------------------------------------------------------------------- /JMStaticContentTableViewController/JMStaticContentTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController/JMStaticContentTableViewController.h -------------------------------------------------------------------------------- /JMStaticContentTableViewController/JMStaticContentTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController/JMStaticContentTableViewController.m -------------------------------------------------------------------------------- /JMStaticContentTableViewController/JMStaticContentTableViewSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController/JMStaticContentTableViewSection.h -------------------------------------------------------------------------------- /JMStaticContentTableViewController/JMStaticContentTableViewSection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController/JMStaticContentTableViewSection.m -------------------------------------------------------------------------------- /JMStaticContentTableViewController/JMStaticContentTextFieldTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController/JMStaticContentTextFieldTableViewCell.h -------------------------------------------------------------------------------- /JMStaticContentTableViewController/JMStaticContentTextFieldTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/JMStaticContentTableViewController/JMStaticContentTextFieldTableViewCell.m -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/README.md -------------------------------------------------------------------------------- /SettingsExample/SettingsExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/AppDelegate.h -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/AppDelegate.m -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/AirplaneMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/AirplaneMode.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/AppStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/AppStore.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Brightness.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/General.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Mail.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Mail@2x.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Messages.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Music.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Notes.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Notifications.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Notifications@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Notifications@2x.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Phone.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Photos.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Photos@2x.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Safari.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Sounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Sounds.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/UIPreferencesBlueCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/UIPreferencesBlueCheck.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/UIPreferencesBlueCheck@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/UIPreferencesBlueCheck@2x.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/Images/Video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/Images/Video.png -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/NotificationsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/NotificationsViewController.h -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/NotificationsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/NotificationsViewController.m -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/SettingsExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/SettingsExample-Info.plist -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/SettingsExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/SettingsExample-Prefix.pch -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/SettingsViewController.h -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/SettingsViewController.m -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/WifiNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/WifiNetwork.h -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/WifiNetwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/WifiNetwork.m -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/WifiNetworkTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/WifiNetworkTableViewCell.h -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/WifiNetworkTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/WifiNetworkTableViewCell.m -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/WifiViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/WifiViewController.h -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/WifiViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/WifiViewController.m -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SettingsExample/SettingsExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakemarsh/JMStaticContentTableViewController/HEAD/SettingsExample/SettingsExample/main.m --------------------------------------------------------------------------------