├── .swift-version ├── Demo ├── .gitignore ├── Podfile ├── Podfile.lock ├── TimedSilverExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── TimedSilverExample.xcworkspace │ └── contents.xcworkspacedata ├── TimedSilverExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── TimedSilverExampleTests │ ├── Info.plist │ └── TimedSilverExampleTests.swift ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── Foundation │ ├── Bundle+TSExtension.swift │ ├── Data+TSExtension.swift │ ├── Date+TSExtension.swift │ ├── DispatchQueue+TSExtension.swift │ ├── FileManager+TSExtension.swift │ ├── IndexPath+TSOffset.swift │ ├── IndexSet+TSExtension.swift │ ├── NSDictionary+TSExtension.swift │ ├── NSObject+TSExtension.swift │ ├── NSRange+TSExtension.swift │ ├── NSString+TSExtension.swift │ ├── NotificationCenter+TSBlock.swift │ ├── Timer+TSBlock.swift │ ├── URLRequest+TScURLCommand.swift │ ├── UserDefaults+TSArchiveData.swift │ └── UserDefaults+TSExtension.swift ├── Struct │ ├── Array+TSExtension.swift │ ├── CGSize+TSExtension.swift │ ├── Dictionary+TSExtension.swift │ ├── Double+TSExtension.swift │ ├── String+TSCrypto.swift │ └── String+TSExtension.swift ├── TimedSilverHeader.h └── UIKit │ ├── UIAlertController+TSExtension.swift │ ├── UIApplication+TSExtension.swift │ ├── UIButton+TSExtension.swift │ ├── UIButton+TSTouchArea.swift │ ├── UICollectionView+TSExtension.swift │ ├── UICollectionView+TSGeneric.swift │ ├── UIColor+TSExtension.swift │ ├── UIControl+TSExtension.swift │ ├── UIControl+TSSound.swift │ ├── UIDevice+TSExtension.swift │ ├── UIDevice+TSType.swift │ ├── UIImage+TSExtension.swift │ ├── UIImage+TSLaunchImage.swift │ ├── UIImage+TSOrientation.swift │ ├── UIImage+TSResize.swift │ ├── UIImage+TSRoundedCorner.swift │ ├── UILabel+TSExtension.swift │ ├── UINavigationController+TSExtension.swift │ ├── UINavigationItem+TSExtension.swift │ ├── UIScreen+TSExtension.swift │ ├── UIScrollView+TSExtension.swift │ ├── UIScrollView+TSPage.swift │ ├── UISearchBar+TSExtension.swift │ ├── UITableView+TSExtension.swift │ ├── UITableView+TSGeneric.swift │ ├── UITableView+TSiOS7SettingStyle.swift │ ├── UIView+TSExtension.swift │ ├── UIView+TSFrame.swift │ ├── UIView+TSGestureBlock.swift │ ├── UIViewController+TSExtension.swift │ ├── UIViewController+TSVisible.swift │ └── UIWindow+TSHierarchy.swift └── TimedSilver.podspec /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /Demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/.gitignore -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/Podfile -------------------------------------------------------------------------------- /Demo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/Podfile.lock -------------------------------------------------------------------------------- /Demo/TimedSilverExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/TimedSilverExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/TimedSilverExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/TimedSilverExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExample/AppDelegate.swift -------------------------------------------------------------------------------- /Demo/TimedSilverExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/TimedSilverExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/TimedSilverExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/TimedSilverExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExample/Info.plist -------------------------------------------------------------------------------- /Demo/TimedSilverExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExample/ViewController.swift -------------------------------------------------------------------------------- /Demo/TimedSilverExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExampleTests/Info.plist -------------------------------------------------------------------------------- /Demo/TimedSilverExampleTests/TimedSilverExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Demo/TimedSilverExampleTests/TimedSilverExampleTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Foundation/Bundle+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/Bundle+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/Data+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/Data+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/Date+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/Date+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/DispatchQueue+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/DispatchQueue+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/FileManager+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/FileManager+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/IndexPath+TSOffset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/IndexPath+TSOffset.swift -------------------------------------------------------------------------------- /Sources/Foundation/IndexSet+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/IndexSet+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/NSDictionary+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/NSDictionary+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/NSObject+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/NSObject+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/NSRange+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/NSRange+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/NSString+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/NSString+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Foundation/NotificationCenter+TSBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/NotificationCenter+TSBlock.swift -------------------------------------------------------------------------------- /Sources/Foundation/Timer+TSBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/Timer+TSBlock.swift -------------------------------------------------------------------------------- /Sources/Foundation/URLRequest+TScURLCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/URLRequest+TScURLCommand.swift -------------------------------------------------------------------------------- /Sources/Foundation/UserDefaults+TSArchiveData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/UserDefaults+TSArchiveData.swift -------------------------------------------------------------------------------- /Sources/Foundation/UserDefaults+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Foundation/UserDefaults+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Struct/Array+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Struct/Array+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Struct/CGSize+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Struct/CGSize+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Struct/Dictionary+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Struct/Dictionary+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Struct/Double+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Struct/Double+TSExtension.swift -------------------------------------------------------------------------------- /Sources/Struct/String+TSCrypto.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Struct/String+TSCrypto.swift -------------------------------------------------------------------------------- /Sources/Struct/String+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/Struct/String+TSExtension.swift -------------------------------------------------------------------------------- /Sources/TimedSilverHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/TimedSilverHeader.h -------------------------------------------------------------------------------- /Sources/UIKit/UIAlertController+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIAlertController+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIApplication+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIApplication+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIButton+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIButton+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIButton+TSTouchArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIButton+TSTouchArea.swift -------------------------------------------------------------------------------- /Sources/UIKit/UICollectionView+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UICollectionView+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UICollectionView+TSGeneric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UICollectionView+TSGeneric.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIColor+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIColor+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIControl+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIControl+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIControl+TSSound.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIControl+TSSound.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIDevice+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIDevice+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIDevice+TSType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIDevice+TSType.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIImage+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIImage+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIImage+TSLaunchImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIImage+TSLaunchImage.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIImage+TSOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIImage+TSOrientation.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIImage+TSResize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIImage+TSResize.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIImage+TSRoundedCorner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIImage+TSRoundedCorner.swift -------------------------------------------------------------------------------- /Sources/UIKit/UILabel+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UILabel+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UINavigationController+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UINavigationController+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UINavigationItem+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UINavigationItem+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIScreen+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIScreen+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIScrollView+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIScrollView+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIScrollView+TSPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIScrollView+TSPage.swift -------------------------------------------------------------------------------- /Sources/UIKit/UISearchBar+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UISearchBar+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UITableView+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UITableView+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UITableView+TSGeneric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UITableView+TSGeneric.swift -------------------------------------------------------------------------------- /Sources/UIKit/UITableView+TSiOS7SettingStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UITableView+TSiOS7SettingStyle.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIView+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIView+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIView+TSFrame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIView+TSFrame.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIView+TSGestureBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIView+TSGestureBlock.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIViewController+TSExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIViewController+TSExtension.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIViewController+TSVisible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIViewController+TSVisible.swift -------------------------------------------------------------------------------- /Sources/UIKit/UIWindow+TSHierarchy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/Sources/UIKit/UIWindow+TSHierarchy.swift -------------------------------------------------------------------------------- /TimedSilver.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilen/TimedSilver/HEAD/TimedSilver.podspec --------------------------------------------------------------------------------