├── .github ├── dependabot.yml └── workflows │ └── cocoapods.yml ├── .gitignore ├── .gitmodules ├── .travis.sh ├── .travis.yml ├── Changelog.md ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── README~zh-hans.md ├── RFARC.h ├── RFDispatch.h ├── RFDispatch.m ├── RFFeatureSupport.h ├── RFFoundation.h ├── RFGeometry.h ├── RFGeometry.m ├── RFKit.h ├── RFKit.m ├── RFKit.podspec ├── RFKit.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── RFKit iOS.xcscheme │ ├── RFKit macOS.xcscheme │ ├── Target-watchOS.xcscheme │ ├── Test-Swift.xcscheme │ ├── Test-iOS.xcscheme │ ├── Test-macOS.xcscheme │ └── Test-tvOS.xcscheme ├── RFKit.xcworkspace └── contents.xcworkspacedata ├── RFKitDefaultCategories.h ├── RFPerformance.h ├── RFPerformance.m ├── RFRuntime.h ├── Target ├── Info.plist └── RFKit-umbrella.h ├── Test ├── Shared │ ├── DoutTests.m │ ├── RTHelper.h │ ├── RTHelper.m │ ├── RuntimeTests.m │ └── category │ │ ├── Foundation │ │ ├── NSArray+RFKitTests.m │ │ ├── NSBundle+RFKitTests.m │ │ ├── NSDate+RFKitTests.m │ │ ├── NSDateFormatter+RFKitTests.m │ │ ├── NSDictionary+RFKitTests.m │ │ ├── NSError+RFKitTests.m │ │ ├── NSFileManager+RFKitTests.m │ │ ├── NSJSONSerialization+RFKitTests.m │ │ ├── NSObject+RFKitTests.m │ │ ├── NSString+RFKitTests.m │ │ ├── NSURL+RFKitTests.m │ │ └── RFGeometryTests.m │ │ └── UIResponder+RFKitTests.m ├── Supporting Files │ └── OCBridgingHeader.h ├── Swift │ ├── Info.plist │ └── SwiftNameTest.swift ├── Target-watchOS │ ├── Target_watchOS.h │ └── Target_watchOS.m ├── iOS │ ├── Info.plist │ ├── UINavigationController+RFKitTests.m │ ├── UIPickerView+RFKitTests.m │ ├── UITextField+RFKitTests.m │ └── UIView+RFKitTests.m ├── macOS │ ├── Info.plist │ ├── RuntimeMacOSTests.m │ └── macos.storyboard └── tvOS │ └── Info.plist ├── category ├── Foundation │ ├── NSArray+RFKit.h │ ├── NSArray+RFKit.m │ ├── NSBundle+RFKit.h │ ├── NSBundle+RFKit.m │ ├── NSDate+RFKit.h │ ├── NSDate+RFKit.m │ ├── NSDateFormatter+RFKit.h │ ├── NSDateFormatter+RFKit.m │ ├── NSDictionary+RFKit.h │ ├── NSDictionary+RFKit.m │ ├── NSError+RFKit.h │ ├── NSError+RFKit.m │ ├── NSFileManager+RFKit.h │ ├── NSFileManager+RFKit.m │ ├── NSJSONSerialization+RFKit.h │ ├── NSJSONSerialization+RFKit.m │ ├── NSNumberFormatter+RFKit.h │ ├── NSNumberFormatter+RFKit.m │ ├── NSObject+RFKit.h │ ├── NSObject+RFKit.m │ ├── NSString+RFKit.h │ ├── NSString+RFKit.m │ ├── NSURL+RFKit.h │ └── NSURL+RFKit.m └── UIKit │ ├── NSLayoutConstraint+RFKit.h │ ├── NSLayoutConstraint+RFKit.m │ ├── UIAlertView+RFKit.h │ ├── UIAlertView+RFKit.m │ ├── UIButton+RFKit.h │ ├── UIButton+RFKit.m │ ├── UIColor+RFKit.h │ ├── UIColor+RFKit.m │ ├── UIDevice+RFKit.h │ ├── UIDevice+RFKit.m │ ├── UIImage+RFKit.h │ ├── UIImage+RFKit.m │ ├── UINavigationController+RFKit.h │ ├── UINavigationController+RFKit.m │ ├── UIPickerView+RFKit.h │ ├── UIPickerView+RFKit.m │ ├── UIResponder+RFKit.h │ ├── UIResponder+RFKit.m │ ├── UIScrollView+RFScrolling.h │ ├── UIScrollView+RFScrolling.m │ ├── UISearchBar+RFKit.h │ ├── UISearchBar+RFKit.m │ ├── UIStoryboard+RFKit.h │ ├── UIStoryboard+RFKit.m │ ├── UITableView+RFKit.h │ ├── UITableView+RFKit.m │ ├── UITextField+RFKit.h │ ├── UITextField+RFKit.m │ ├── UIView+RFAnimate.h │ ├── UIView+RFAnimate.m │ ├── UIView+RFKit.h │ ├── UIView+RFKit.m │ ├── UIViewController+RFInterfaceOrientation.h │ ├── UIViewController+RFKit.h │ ├── UIViewController+RFKit.m │ ├── UIWebView+RFKit.h │ └── UIWebView+RFKit.m ├── codecov.yml ├── dout.h ├── dout.m ├── doutkit ├── RFAlloctionProxy.h ├── RFAlloctionProxy.m ├── RFFrameChangeProxy.h └── RFFrameChangeProxy.m └── extobjc ├── EXTKeyPathCoding.h ├── EXTScope.h ├── EXTScope.m └── metamacros.h /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cocoapods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/.github/workflows/cocoapods.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/.travis.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/README.md -------------------------------------------------------------------------------- /README~zh-hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/README~zh-hans.md -------------------------------------------------------------------------------- /RFARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFARC.h -------------------------------------------------------------------------------- /RFDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFDispatch.h -------------------------------------------------------------------------------- /RFDispatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFDispatch.m -------------------------------------------------------------------------------- /RFFeatureSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFFeatureSupport.h -------------------------------------------------------------------------------- /RFFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFFoundation.h -------------------------------------------------------------------------------- /RFGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFGeometry.h -------------------------------------------------------------------------------- /RFGeometry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFGeometry.m -------------------------------------------------------------------------------- /RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.h -------------------------------------------------------------------------------- /RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.m -------------------------------------------------------------------------------- /RFKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.podspec -------------------------------------------------------------------------------- /RFKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RFKit.xcodeproj/xcshareddata/xcschemes/RFKit iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.xcodeproj/xcshareddata/xcschemes/RFKit iOS.xcscheme -------------------------------------------------------------------------------- /RFKit.xcodeproj/xcshareddata/xcschemes/RFKit macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.xcodeproj/xcshareddata/xcschemes/RFKit macOS.xcscheme -------------------------------------------------------------------------------- /RFKit.xcodeproj/xcshareddata/xcschemes/Target-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.xcodeproj/xcshareddata/xcschemes/Target-watchOS.xcscheme -------------------------------------------------------------------------------- /RFKit.xcodeproj/xcshareddata/xcschemes/Test-Swift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.xcodeproj/xcshareddata/xcschemes/Test-Swift.xcscheme -------------------------------------------------------------------------------- /RFKit.xcodeproj/xcshareddata/xcschemes/Test-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.xcodeproj/xcshareddata/xcschemes/Test-iOS.xcscheme -------------------------------------------------------------------------------- /RFKit.xcodeproj/xcshareddata/xcschemes/Test-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.xcodeproj/xcshareddata/xcschemes/Test-macOS.xcscheme -------------------------------------------------------------------------------- /RFKit.xcodeproj/xcshareddata/xcschemes/Test-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.xcodeproj/xcshareddata/xcschemes/Test-tvOS.xcscheme -------------------------------------------------------------------------------- /RFKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RFKitDefaultCategories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFKitDefaultCategories.h -------------------------------------------------------------------------------- /RFPerformance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFPerformance.h -------------------------------------------------------------------------------- /RFPerformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFPerformance.m -------------------------------------------------------------------------------- /RFRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/RFRuntime.h -------------------------------------------------------------------------------- /Target/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Target/Info.plist -------------------------------------------------------------------------------- /Target/RFKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Target/RFKit-umbrella.h -------------------------------------------------------------------------------- /Test/Shared/DoutTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/DoutTests.m -------------------------------------------------------------------------------- /Test/Shared/RTHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/RTHelper.h -------------------------------------------------------------------------------- /Test/Shared/RTHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/RTHelper.m -------------------------------------------------------------------------------- /Test/Shared/RuntimeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/RuntimeTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSArray+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSArray+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSBundle+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSBundle+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSDate+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSDate+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSDateFormatter+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSDateFormatter+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSDictionary+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSDictionary+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSError+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSError+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSFileManager+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSFileManager+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSJSONSerialization+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSJSONSerialization+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSObject+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSObject+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSString+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSString+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/NSURL+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/NSURL+RFKitTests.m -------------------------------------------------------------------------------- /Test/Shared/category/Foundation/RFGeometryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/Foundation/RFGeometryTests.m -------------------------------------------------------------------------------- /Test/Shared/category/UIResponder+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Shared/category/UIResponder+RFKitTests.m -------------------------------------------------------------------------------- /Test/Supporting Files/OCBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Supporting Files/OCBridgingHeader.h -------------------------------------------------------------------------------- /Test/Swift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Swift/Info.plist -------------------------------------------------------------------------------- /Test/Swift/SwiftNameTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Swift/SwiftNameTest.swift -------------------------------------------------------------------------------- /Test/Target-watchOS/Target_watchOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Target-watchOS/Target_watchOS.h -------------------------------------------------------------------------------- /Test/Target-watchOS/Target_watchOS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/Target-watchOS/Target_watchOS.m -------------------------------------------------------------------------------- /Test/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/iOS/Info.plist -------------------------------------------------------------------------------- /Test/iOS/UINavigationController+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/iOS/UINavigationController+RFKitTests.m -------------------------------------------------------------------------------- /Test/iOS/UIPickerView+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/iOS/UIPickerView+RFKitTests.m -------------------------------------------------------------------------------- /Test/iOS/UITextField+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/iOS/UITextField+RFKitTests.m -------------------------------------------------------------------------------- /Test/iOS/UIView+RFKitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/iOS/UIView+RFKitTests.m -------------------------------------------------------------------------------- /Test/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/macOS/Info.plist -------------------------------------------------------------------------------- /Test/macOS/RuntimeMacOSTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/macOS/RuntimeMacOSTests.m -------------------------------------------------------------------------------- /Test/macOS/macos.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/macOS/macos.storyboard -------------------------------------------------------------------------------- /Test/tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/Test/tvOS/Info.plist -------------------------------------------------------------------------------- /category/Foundation/NSArray+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSArray+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSArray+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSArray+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSBundle+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSBundle+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSBundle+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSBundle+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSDate+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSDate+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSDate+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSDate+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSDateFormatter+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSDateFormatter+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSDateFormatter+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSDateFormatter+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSDictionary+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSDictionary+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSDictionary+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSDictionary+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSError+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSError+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSError+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSError+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSFileManager+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSFileManager+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSFileManager+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSFileManager+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSJSONSerialization+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSJSONSerialization+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSJSONSerialization+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSJSONSerialization+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSNumberFormatter+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSNumberFormatter+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSNumberFormatter+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSNumberFormatter+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSObject+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSObject+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSObject+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSObject+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSString+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSString+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSString+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSString+RFKit.m -------------------------------------------------------------------------------- /category/Foundation/NSURL+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSURL+RFKit.h -------------------------------------------------------------------------------- /category/Foundation/NSURL+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/Foundation/NSURL+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/NSLayoutConstraint+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/NSLayoutConstraint+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/NSLayoutConstraint+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/NSLayoutConstraint+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIAlertView+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIAlertView+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIAlertView+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIAlertView+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIButton+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIButton+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIButton+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIButton+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIColor+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIColor+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIColor+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIColor+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIDevice+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIDevice+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIDevice+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIDevice+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIImage+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIImage+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIImage+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIImage+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UINavigationController+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UINavigationController+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UINavigationController+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UINavigationController+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIPickerView+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIPickerView+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIPickerView+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIPickerView+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIResponder+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIResponder+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIResponder+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIResponder+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIScrollView+RFScrolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIScrollView+RFScrolling.h -------------------------------------------------------------------------------- /category/UIKit/UIScrollView+RFScrolling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIScrollView+RFScrolling.m -------------------------------------------------------------------------------- /category/UIKit/UISearchBar+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UISearchBar+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UISearchBar+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UISearchBar+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIStoryboard+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIStoryboard+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIStoryboard+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIStoryboard+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UITableView+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UITableView+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UITableView+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UITableView+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UITextField+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UITextField+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UITextField+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UITextField+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIView+RFAnimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIView+RFAnimate.h -------------------------------------------------------------------------------- /category/UIKit/UIView+RFAnimate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIView+RFAnimate.m -------------------------------------------------------------------------------- /category/UIKit/UIView+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIView+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIView+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIView+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIViewController+RFInterfaceOrientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIViewController+RFInterfaceOrientation.h -------------------------------------------------------------------------------- /category/UIKit/UIViewController+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIViewController+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIViewController+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIViewController+RFKit.m -------------------------------------------------------------------------------- /category/UIKit/UIWebView+RFKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIWebView+RFKit.h -------------------------------------------------------------------------------- /category/UIKit/UIWebView+RFKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/category/UIKit/UIWebView+RFKit.m -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "Test" 3 | -------------------------------------------------------------------------------- /dout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/dout.h -------------------------------------------------------------------------------- /dout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/dout.m -------------------------------------------------------------------------------- /doutkit/RFAlloctionProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/doutkit/RFAlloctionProxy.h -------------------------------------------------------------------------------- /doutkit/RFAlloctionProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/doutkit/RFAlloctionProxy.m -------------------------------------------------------------------------------- /doutkit/RFFrameChangeProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/doutkit/RFFrameChangeProxy.h -------------------------------------------------------------------------------- /doutkit/RFFrameChangeProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/doutkit/RFFrameChangeProxy.m -------------------------------------------------------------------------------- /extobjc/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /extobjc/EXTScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/extobjc/EXTScope.h -------------------------------------------------------------------------------- /extobjc/EXTScope.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/extobjc/EXTScope.m -------------------------------------------------------------------------------- /extobjc/metamacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BB9z/RFKit/HEAD/extobjc/metamacros.h --------------------------------------------------------------------------------