All about swift extension 😉
Swift 5.0
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target 'YourApp' do
pod 'TimedSilver', '1.2.0'
end
Swift 4.0
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
target 'YourApp' do
pod 'TimedSilver', '1.1.0'
end
├── 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 is released under the MIT license. See LICENSE for details.