├── .gitignore ├── LICENSE ├── Preferences.png ├── README.md ├── RHPreferences.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── RHPreferences ├── RHPreferences-Info.plist ├── RHPreferences-Prefix.pch ├── RHPreferences.h ├── RHPreferencesWindow.xib ├── RHPreferencesWindowController.h ├── RHPreferencesWindowController.m └── en.lproj │ └── InfoPlist.strings └── RHPreferencesTester ├── AboutPreferences.png ├── AccountsPreferences.png ├── RHAboutViewController.h ├── RHAboutViewController.m ├── RHAboutViewController.xib ├── RHAccountsViewController.h ├── RHAccountsViewController.m ├── RHAccountsViewController.xib ├── RHAppDelegate.h ├── RHAppDelegate.m ├── RHPreferencesTester-Info.plist ├── RHPreferencesTester-Prefix.pch ├── RHWideViewController.h ├── RHWideViewController.m ├── RHWideViewController.xib ├── WidePreferences.png ├── en.lproj ├── Credits.rtf ├── InfoPlist.strings └── MainMenu.xib └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/LICENSE -------------------------------------------------------------------------------- /Preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/Preferences.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/README.md -------------------------------------------------------------------------------- /RHPreferences.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferences.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RHPreferences.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferences.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RHPreferences/RHPreferences-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferences/RHPreferences-Info.plist -------------------------------------------------------------------------------- /RHPreferences/RHPreferences-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferences/RHPreferences-Prefix.pch -------------------------------------------------------------------------------- /RHPreferences/RHPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferences/RHPreferences.h -------------------------------------------------------------------------------- /RHPreferences/RHPreferencesWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferences/RHPreferencesWindow.xib -------------------------------------------------------------------------------- /RHPreferences/RHPreferencesWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferences/RHPreferencesWindowController.h -------------------------------------------------------------------------------- /RHPreferences/RHPreferencesWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferences/RHPreferencesWindowController.m -------------------------------------------------------------------------------- /RHPreferences/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /RHPreferencesTester/AboutPreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/AboutPreferences.png -------------------------------------------------------------------------------- /RHPreferencesTester/AccountsPreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/AccountsPreferences.png -------------------------------------------------------------------------------- /RHPreferencesTester/RHAboutViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHAboutViewController.h -------------------------------------------------------------------------------- /RHPreferencesTester/RHAboutViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHAboutViewController.m -------------------------------------------------------------------------------- /RHPreferencesTester/RHAboutViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHAboutViewController.xib -------------------------------------------------------------------------------- /RHPreferencesTester/RHAccountsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHAccountsViewController.h -------------------------------------------------------------------------------- /RHPreferencesTester/RHAccountsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHAccountsViewController.m -------------------------------------------------------------------------------- /RHPreferencesTester/RHAccountsViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHAccountsViewController.xib -------------------------------------------------------------------------------- /RHPreferencesTester/RHAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHAppDelegate.h -------------------------------------------------------------------------------- /RHPreferencesTester/RHAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHAppDelegate.m -------------------------------------------------------------------------------- /RHPreferencesTester/RHPreferencesTester-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHPreferencesTester-Info.plist -------------------------------------------------------------------------------- /RHPreferencesTester/RHPreferencesTester-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHPreferencesTester-Prefix.pch -------------------------------------------------------------------------------- /RHPreferencesTester/RHWideViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHWideViewController.h -------------------------------------------------------------------------------- /RHPreferencesTester/RHWideViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHWideViewController.m -------------------------------------------------------------------------------- /RHPreferencesTester/RHWideViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/RHWideViewController.xib -------------------------------------------------------------------------------- /RHPreferencesTester/WidePreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/WidePreferences.png -------------------------------------------------------------------------------- /RHPreferencesTester/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /RHPreferencesTester/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /RHPreferencesTester/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /RHPreferencesTester/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heardrwt/RHPreferences/HEAD/RHPreferencesTester/main.m --------------------------------------------------------------------------------