├── .gitignore ├── LICENSE ├── Project ├── XHSetting.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── XHSetting │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── BaseSettingViewController.h │ ├── BaseSettingViewController.m │ ├── Images.xcassets │ │ ├── AirplaneMode.imageset │ │ │ ├── AirplaneMode.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 120.png │ │ │ ├── 152.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ └── Contents.json │ │ ├── Brightness.imageset │ │ │ ├── Brightness.png │ │ │ └── Contents.json │ │ ├── General.imageset │ │ │ ├── Contents.json │ │ │ └── General.png │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ └── Default@2x.png │ │ ├── Mail.imageset │ │ │ ├── Contents.json │ │ │ ├── Mail.png │ │ │ └── Mail@2x.png │ │ ├── Messages.imageset │ │ │ ├── Contents.json │ │ │ └── Messages.png │ │ ├── Music.imageset │ │ │ ├── Contents.json │ │ │ └── Music.png │ │ ├── Notes.imageset │ │ │ ├── Contents.json │ │ │ └── Notes.png │ │ ├── Notifications.imageset │ │ │ ├── Contents.json │ │ │ ├── Notifications.png │ │ │ └── Notifications@2x.png │ │ ├── Phone.imageset │ │ │ ├── Contents.json │ │ │ └── Phone.png │ │ ├── Photos.imageset │ │ │ ├── Contents.json │ │ │ ├── Photos.png │ │ │ └── Photos@2x.png │ │ ├── Safari.imageset │ │ │ ├── Contents.json │ │ │ └── Safari.png │ │ ├── Sounds.imageset │ │ │ ├── Contents.json │ │ │ └── Sounds.png │ │ ├── Store.imageset │ │ │ ├── AppStore.png │ │ │ └── Contents.json │ │ ├── UIPreferencesBlueCheck.imageset │ │ │ ├── Contents.json │ │ │ ├── UIPreferencesBlueCheck.png │ │ │ └── UIPreferencesBlueCheck@2x.png │ │ ├── Video.imageset │ │ │ ├── Contents.json │ │ │ └── Video.png │ │ └── meicon.imageset │ │ │ ├── Contents.json │ │ │ └── meicon.png │ ├── NotificationsViewController.h │ ├── NotificationsViewController.m │ ├── RootViewController.h │ ├── RootViewController.m │ ├── Settings.plist │ ├── WifiNetwork.h │ ├── WifiNetwork.m │ ├── WifiNetworkTableViewCell.h │ ├── WifiNetworkTableViewCell.m │ ├── WifiViewController.h │ ├── WifiViewController.m │ ├── XHSetting-Info.plist │ ├── XHSetting-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── XHSettingTests │ ├── XHSettingTests-Info.plist │ ├── XHSettingTests.m │ └── en.lproj │ └── InfoPlist.strings ├── README.md ├── Screenshots ├── Instagram.png ├── QQ.png ├── Twitter.png ├── 唱吧.png ├── 微信.png ├── 新浪微博.png └── 网易新闻.png ├── Source ├── XHBadgeLabel.h ├── XHBadgeLabel.m ├── XHLoginFooterView.h ├── XHLoginFooterView.m ├── XHSetting.h ├── XHSetting.m ├── XHTableViewBlocks.h ├── XHTableViewCell.h ├── XHTableViewCell.m ├── XHTableViewSection.h ├── XHTableViewSection.m ├── XHTextFieldTableViewCell.h └── XHTextFieldTableViewCell.m └── XHSetting.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/LICENSE -------------------------------------------------------------------------------- /Project/XHSetting.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Project/XHSetting.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Project/XHSetting/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/AppDelegate.h -------------------------------------------------------------------------------- /Project/XHSetting/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/AppDelegate.m -------------------------------------------------------------------------------- /Project/XHSetting/BaseSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/BaseSettingViewController.h -------------------------------------------------------------------------------- /Project/XHSetting/BaseSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/BaseSettingViewController.m -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/AirplaneMode.imageset/AirplaneMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/AirplaneMode.imageset/AirplaneMode.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/AirplaneMode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/AirplaneMode.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Brightness.imageset/Brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Brightness.imageset/Brightness.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Brightness.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Brightness.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/General.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/General.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/General.imageset/General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/General.imageset/General.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Mail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Mail.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Mail.imageset/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Mail.imageset/Mail.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Mail.imageset/Mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Mail.imageset/Mail@2x.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Messages.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Messages.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Messages.imageset/Messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Messages.imageset/Messages.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Music.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Music.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Music.imageset/Music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Music.imageset/Music.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Notes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Notes.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Notes.imageset/Notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Notes.imageset/Notes.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Notifications.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Notifications.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Notifications.imageset/Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Notifications.imageset/Notifications.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Notifications.imageset/Notifications@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Notifications.imageset/Notifications@2x.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Phone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Phone.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Phone.imageset/Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Phone.imageset/Phone.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Photos.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Photos.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Photos.imageset/Photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Photos.imageset/Photos.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Photos.imageset/Photos@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Photos.imageset/Photos@2x.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Safari.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Safari.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Safari.imageset/Safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Safari.imageset/Safari.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Sounds.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Sounds.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Sounds.imageset/Sounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Sounds.imageset/Sounds.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Store.imageset/AppStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Store.imageset/AppStore.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Store.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Store.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/UIPreferencesBlueCheck.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/UIPreferencesBlueCheck.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/UIPreferencesBlueCheck.imageset/UIPreferencesBlueCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/UIPreferencesBlueCheck.imageset/UIPreferencesBlueCheck.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/UIPreferencesBlueCheck.imageset/UIPreferencesBlueCheck@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/UIPreferencesBlueCheck.imageset/UIPreferencesBlueCheck@2x.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Video.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Video.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/Video.imageset/Video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/Video.imageset/Video.png -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/meicon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/meicon.imageset/Contents.json -------------------------------------------------------------------------------- /Project/XHSetting/Images.xcassets/meicon.imageset/meicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Images.xcassets/meicon.imageset/meicon.png -------------------------------------------------------------------------------- /Project/XHSetting/NotificationsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/NotificationsViewController.h -------------------------------------------------------------------------------- /Project/XHSetting/NotificationsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/NotificationsViewController.m -------------------------------------------------------------------------------- /Project/XHSetting/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/RootViewController.h -------------------------------------------------------------------------------- /Project/XHSetting/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/RootViewController.m -------------------------------------------------------------------------------- /Project/XHSetting/Settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/Settings.plist -------------------------------------------------------------------------------- /Project/XHSetting/WifiNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/WifiNetwork.h -------------------------------------------------------------------------------- /Project/XHSetting/WifiNetwork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/WifiNetwork.m -------------------------------------------------------------------------------- /Project/XHSetting/WifiNetworkTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/WifiNetworkTableViewCell.h -------------------------------------------------------------------------------- /Project/XHSetting/WifiNetworkTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/WifiNetworkTableViewCell.m -------------------------------------------------------------------------------- /Project/XHSetting/WifiViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/WifiViewController.h -------------------------------------------------------------------------------- /Project/XHSetting/WifiViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/WifiViewController.m -------------------------------------------------------------------------------- /Project/XHSetting/XHSetting-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/XHSetting-Info.plist -------------------------------------------------------------------------------- /Project/XHSetting/XHSetting-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/XHSetting-Prefix.pch -------------------------------------------------------------------------------- /Project/XHSetting/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Project/XHSetting/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSetting/main.m -------------------------------------------------------------------------------- /Project/XHSettingTests/XHSettingTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSettingTests/XHSettingTests-Info.plist -------------------------------------------------------------------------------- /Project/XHSettingTests/XHSettingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Project/XHSettingTests/XHSettingTests.m -------------------------------------------------------------------------------- /Project/XHSettingTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Screenshots/Instagram.png -------------------------------------------------------------------------------- /Screenshots/QQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Screenshots/QQ.png -------------------------------------------------------------------------------- /Screenshots/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Screenshots/Twitter.png -------------------------------------------------------------------------------- /Screenshots/唱吧.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Screenshots/唱吧.png -------------------------------------------------------------------------------- /Screenshots/微信.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Screenshots/微信.png -------------------------------------------------------------------------------- /Screenshots/新浪微博.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Screenshots/新浪微博.png -------------------------------------------------------------------------------- /Screenshots/网易新闻.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Screenshots/网易新闻.png -------------------------------------------------------------------------------- /Source/XHBadgeLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHBadgeLabel.h -------------------------------------------------------------------------------- /Source/XHBadgeLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHBadgeLabel.m -------------------------------------------------------------------------------- /Source/XHLoginFooterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHLoginFooterView.h -------------------------------------------------------------------------------- /Source/XHLoginFooterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHLoginFooterView.m -------------------------------------------------------------------------------- /Source/XHSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHSetting.h -------------------------------------------------------------------------------- /Source/XHSetting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHSetting.m -------------------------------------------------------------------------------- /Source/XHTableViewBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHTableViewBlocks.h -------------------------------------------------------------------------------- /Source/XHTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHTableViewCell.h -------------------------------------------------------------------------------- /Source/XHTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHTableViewCell.m -------------------------------------------------------------------------------- /Source/XHTableViewSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHTableViewSection.h -------------------------------------------------------------------------------- /Source/XHTableViewSection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHTableViewSection.m -------------------------------------------------------------------------------- /Source/XHTextFieldTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHTextFieldTableViewCell.h -------------------------------------------------------------------------------- /Source/XHTextFieldTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/Source/XHTextFieldTableViewCell.m -------------------------------------------------------------------------------- /XHSetting.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JackTeam/XHSetting/HEAD/XHSetting.podspec --------------------------------------------------------------------------------