├── .gitignore ├── LICENSE ├── README.md └── textTools ├── textTools.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── textTools ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LXCategory │ ├── LFALAsset+Image.h │ ├── LFALAsset+Image.m │ ├── LFALAsset+Property.h │ ├── LFALAsset+Property.m │ ├── LFCALayer+Add.h │ ├── LFCALayer+Add.m │ ├── LFCategory.h │ ├── LFCategoryMacro.h │ ├── LFClassInfo.h │ ├── LFClassInfo.m │ ├── LFNSArray+Add.h │ ├── LFNSArray+Add.m │ ├── LFNSBundle+Add.h │ ├── LFNSBundle+Add.m │ ├── LFNSCharacterSet+Add.h │ ├── LFNSCharacterSet+Add.m │ ├── LFNSData+Add.h │ ├── LFNSData+Add.m │ ├── LFNSDate+Ext.h │ ├── LFNSDate+Ext.m │ ├── LFNSDate+Format.h │ ├── LFNSDate+Format.m │ ├── LFNSDate+Property.h │ ├── LFNSDate+Property.m │ ├── LFNSDate+Update.h │ ├── LFNSDate+Update.m │ ├── LFNSDictionary+Add.h │ ├── LFNSDictionary+Add.m │ ├── LFNSDictionary+ModelValue.h │ ├── LFNSDictionary+ModelValue.m │ ├── LFNSKeyedUnarchiver+Add.h │ ├── LFNSKeyedUnarchiver+Add.m │ ├── LFNSMutableArray+Add.h │ ├── LFNSMutableArray+Add.m │ ├── LFNSNotificationCenter+Add.h │ ├── LFNSNotificationCenter+Add.m │ ├── LFNSNumber+Add.h │ ├── LFNSNumber+Add.m │ ├── LFNSObject+Add.h │ ├── LFNSObject+Add.m │ ├── LFNSObject+AddForKVO.h │ ├── LFNSObject+AddForKVO.m │ ├── LFNSObject+AddForNotification.h │ ├── LFNSObject+AddForNotification.m │ ├── LFNSObject+Model.h │ ├── LFNSObject+Model.m │ ├── LFNSString+Add.h │ ├── LFNSString+Add.m │ ├── LFNSString+Currency.h │ ├── LFNSString+Currency.m │ ├── LFNSString+URLString.h │ ├── LFNSString+URLString.m │ ├── LFUIAlertController+Blocks.h │ ├── LFUIAlertController+Blocks.m │ ├── LFUIAlertView+Blocks.h │ ├── LFUIAlertView+Blocks.m │ ├── LFUIApplication+Add.h │ ├── LFUIApplication+Add.m │ ├── LFUIBarButtonItem+Add.h │ ├── LFUIBarButtonItem+Add.m │ ├── LFUIBarButtonItem+Image.h │ ├── LFUIBarButtonItem+Image.m │ ├── LFUIBezierPath+Add.h │ ├── LFUIBezierPath+Add.m │ ├── LFUIButton+EnlargeEdge.h │ ├── LFUIButton+EnlargeEdge.m │ ├── LFUIColor+Add.h │ ├── LFUIColor+Add.m │ ├── LFUIControl+Add.h │ ├── LFUIControl+Add.m │ ├── LFUIDevice+Add.h │ ├── LFUIDevice+Add.m │ ├── LFUIFont+Add.h │ ├── LFUIFont+Add.m │ ├── LFUIGestureRecognizer+Add.h │ ├── LFUIGestureRecognizer+Add.m │ ├── LFUIImage+Add.h │ ├── LFUIImage+Add.m │ ├── LFUIImage+AudioIcon.h │ ├── LFUIImage+AudioIcon.m │ ├── LFUIImage+CutScreen.h │ ├── LFUIImage+CutScreen.m │ ├── LFUIImage+Resource.h │ ├── LFUIImage+Resource.m │ ├── LFUIImage+Scale.h │ ├── LFUIImage+Scale.m │ ├── LFUINavigationController+Add.h │ ├── LFUINavigationController+Add.m │ ├── LFUIScrollView+Add.h │ ├── LFUIScrollView+Add.m │ ├── LFUITableView+Add.h │ ├── LFUITableView+Add.m │ ├── LFUITableViewCell+LFCellMethodExtend.h │ ├── LFUITableViewCell+LFCellMethodExtend.m │ ├── LFUIView+Add.h │ ├── LFUIView+Add.m │ ├── LFUIView+Badge.h │ ├── LFUIView+Badge.m │ ├── LFUIView+DKAnalyses.h │ ├── LFUIView+DKAnalyses.m │ ├── LFUIView+LFViewIsDisplaying.h │ ├── LFUIView+LFViewIsDisplaying.m │ ├── LFUIView+MBProgressHUD.h │ ├── LFUIView+MBProgressHUD.m │ ├── LFUIViewController+Add.h │ ├── LFUIViewController+Add.m │ ├── LFUIViewController+DKAnalyses.h │ ├── LFUIViewController+DKAnalyses.m │ ├── LFWeakProxy.h │ ├── LFWeakProxy.m │ └── readme.md ├── ViewController.h ├── ViewController.m └── main.m ├── 分类分享 ├── NSDate+LXExtension │ ├── NSDate+LXExtension.h │ └── NSDate+LXExtension.m ├── NSDictionary+PropertyCode │ ├── NSDictionary+PropertyCode.h │ └── NSDictionary+PropertyCode.m ├── NSObject+JSON │ ├── NSObject+JSON.h │ └── NSObject+JSON.m ├── NSString+LXExtension │ ├── NSString+LXExtension.h │ └── NSString+LXExtension.m ├── UIBarButtonItem+LXExtension │ ├── UIBarButtonItem+LXExtension.h │ └── UIBarButtonItem+LXExtension.m ├── UIImage+LXExtension │ ├── UIImage+LXExtension.h │ └── UIImage+LXExtension.m ├── UITextField+LXExtension │ ├── UITextField+LXExtension.h │ └── UITextField+LXExtension.m ├── UIView+LXExtension │ ├── UIView+LXExtension.h │ └── UIView+LXExtension.m └── 分类说明.rtf └── 工具类分享 ├── 1 └── Single.h ├── 2 ├── HelperUtil.h └── HelperUtil.m ├── 3 ├── LXFileManager.h └── LXFileManager.m ├── 4 ├── LocalPushCenter.h └── LocalPushCenter.m ├── 5 └── LXMacro.h └── 工具类说明.rtf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tools 2 | 项目中常用到的一些分类及工具类 3 | -------------------------------------------------------------------------------- /textTools/textTools.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /textTools/textTools.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /textTools/textTools/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/AppDelegate.h -------------------------------------------------------------------------------- /textTools/textTools/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/AppDelegate.m -------------------------------------------------------------------------------- /textTools/textTools/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /textTools/textTools/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /textTools/textTools/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /textTools/textTools/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/Info.plist -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFALAsset+Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFALAsset+Image.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFALAsset+Image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFALAsset+Image.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFALAsset+Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFALAsset+Property.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFALAsset+Property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFALAsset+Property.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFCALayer+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFCALayer+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFCALayer+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFCALayer+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFCategory.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFCategoryMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFCategoryMacro.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFClassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFClassInfo.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFClassInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFClassInfo.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSArray+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSArray+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSArray+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSArray+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSBundle+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSBundle+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSBundle+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSBundle+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSCharacterSet+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSCharacterSet+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSCharacterSet+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSCharacterSet+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSData+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSData+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSData+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSData+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDate+Ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDate+Ext.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDate+Ext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDate+Ext.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDate+Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDate+Format.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDate+Format.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDate+Format.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDate+Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDate+Property.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDate+Property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDate+Property.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDate+Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDate+Update.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDate+Update.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDate+Update.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDictionary+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDictionary+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDictionary+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDictionary+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDictionary+ModelValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDictionary+ModelValue.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSDictionary+ModelValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSDictionary+ModelValue.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSKeyedUnarchiver+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSKeyedUnarchiver+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSKeyedUnarchiver+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSKeyedUnarchiver+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSMutableArray+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSMutableArray+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSMutableArray+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSMutableArray+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSNotificationCenter+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSNotificationCenter+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSNotificationCenter+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSNotificationCenter+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSNumber+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSNumber+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSNumber+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSNumber+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSObject+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSObject+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSObject+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSObject+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSObject+AddForKVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSObject+AddForKVO.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSObject+AddForKVO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSObject+AddForKVO.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSObject+AddForNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSObject+AddForNotification.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSObject+AddForNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSObject+AddForNotification.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSObject+Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSObject+Model.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSObject+Model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSObject+Model.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSString+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSString+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSString+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSString+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSString+Currency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSString+Currency.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSString+Currency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSString+Currency.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSString+URLString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSString+URLString.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFNSString+URLString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFNSString+URLString.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIAlertController+Blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIAlertController+Blocks.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIAlertController+Blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIAlertController+Blocks.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIAlertView+Blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIAlertView+Blocks.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIAlertView+Blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIAlertView+Blocks.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIApplication+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIApplication+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIApplication+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIApplication+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIBarButtonItem+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIBarButtonItem+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIBarButtonItem+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIBarButtonItem+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIBarButtonItem+Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIBarButtonItem+Image.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIBarButtonItem+Image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIBarButtonItem+Image.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIBezierPath+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIBezierPath+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIBezierPath+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIBezierPath+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIButton+EnlargeEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIButton+EnlargeEdge.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIButton+EnlargeEdge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIButton+EnlargeEdge.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIColor+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIColor+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIColor+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIColor+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIControl+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIControl+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIControl+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIControl+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIDevice+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIDevice+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIDevice+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIDevice+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIFont+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIFont+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIFont+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIFont+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIGestureRecognizer+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIGestureRecognizer+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIGestureRecognizer+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIGestureRecognizer+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+AudioIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+AudioIcon.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+AudioIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+AudioIcon.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+CutScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+CutScreen.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+CutScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+CutScreen.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+Resource.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+Resource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+Resource.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+Scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+Scale.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIImage+Scale.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIImage+Scale.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUINavigationController+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUINavigationController+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUINavigationController+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUINavigationController+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIScrollView+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIScrollView+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIScrollView+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIScrollView+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUITableView+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUITableView+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUITableView+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUITableView+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUITableViewCell+LFCellMethodExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUITableViewCell+LFCellMethodExtend.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUITableViewCell+LFCellMethodExtend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUITableViewCell+LFCellMethodExtend.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+Badge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+Badge.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+Badge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+Badge.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+DKAnalyses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+DKAnalyses.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+DKAnalyses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+DKAnalyses.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+LFViewIsDisplaying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+LFViewIsDisplaying.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+LFViewIsDisplaying.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+LFViewIsDisplaying.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+MBProgressHUD.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIView+MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIView+MBProgressHUD.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIViewController+Add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIViewController+Add.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIViewController+Add.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIViewController+Add.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIViewController+DKAnalyses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIViewController+DKAnalyses.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFUIViewController+DKAnalyses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFUIViewController+DKAnalyses.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFWeakProxy.h -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/LFWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/LFWeakProxy.m -------------------------------------------------------------------------------- /textTools/textTools/LXCategory/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/LXCategory/readme.md -------------------------------------------------------------------------------- /textTools/textTools/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/ViewController.h -------------------------------------------------------------------------------- /textTools/textTools/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/ViewController.m -------------------------------------------------------------------------------- /textTools/textTools/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/textTools/main.m -------------------------------------------------------------------------------- /textTools/分类分享/NSDate+LXExtension/NSDate+LXExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/NSDate+LXExtension/NSDate+LXExtension.h -------------------------------------------------------------------------------- /textTools/分类分享/NSDate+LXExtension/NSDate+LXExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/NSDate+LXExtension/NSDate+LXExtension.m -------------------------------------------------------------------------------- /textTools/分类分享/NSDictionary+PropertyCode/NSDictionary+PropertyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/NSDictionary+PropertyCode/NSDictionary+PropertyCode.h -------------------------------------------------------------------------------- /textTools/分类分享/NSDictionary+PropertyCode/NSDictionary+PropertyCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/NSDictionary+PropertyCode/NSDictionary+PropertyCode.m -------------------------------------------------------------------------------- /textTools/分类分享/NSObject+JSON/NSObject+JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/NSObject+JSON/NSObject+JSON.h -------------------------------------------------------------------------------- /textTools/分类分享/NSObject+JSON/NSObject+JSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/NSObject+JSON/NSObject+JSON.m -------------------------------------------------------------------------------- /textTools/分类分享/NSString+LXExtension/NSString+LXExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/NSString+LXExtension/NSString+LXExtension.h -------------------------------------------------------------------------------- /textTools/分类分享/NSString+LXExtension/NSString+LXExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/NSString+LXExtension/NSString+LXExtension.m -------------------------------------------------------------------------------- /textTools/分类分享/UIBarButtonItem+LXExtension/UIBarButtonItem+LXExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/UIBarButtonItem+LXExtension/UIBarButtonItem+LXExtension.h -------------------------------------------------------------------------------- /textTools/分类分享/UIBarButtonItem+LXExtension/UIBarButtonItem+LXExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/UIBarButtonItem+LXExtension/UIBarButtonItem+LXExtension.m -------------------------------------------------------------------------------- /textTools/分类分享/UIImage+LXExtension/UIImage+LXExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/UIImage+LXExtension/UIImage+LXExtension.h -------------------------------------------------------------------------------- /textTools/分类分享/UIImage+LXExtension/UIImage+LXExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/UIImage+LXExtension/UIImage+LXExtension.m -------------------------------------------------------------------------------- /textTools/分类分享/UITextField+LXExtension/UITextField+LXExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/UITextField+LXExtension/UITextField+LXExtension.h -------------------------------------------------------------------------------- /textTools/分类分享/UITextField+LXExtension/UITextField+LXExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/UITextField+LXExtension/UITextField+LXExtension.m -------------------------------------------------------------------------------- /textTools/分类分享/UIView+LXExtension/UIView+LXExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/UIView+LXExtension/UIView+LXExtension.h -------------------------------------------------------------------------------- /textTools/分类分享/UIView+LXExtension/UIView+LXExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/UIView+LXExtension/UIView+LXExtension.m -------------------------------------------------------------------------------- /textTools/分类分享/分类说明.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/分类分享/分类说明.rtf -------------------------------------------------------------------------------- /textTools/工具类分享/1/Single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/工具类分享/1/Single.h -------------------------------------------------------------------------------- /textTools/工具类分享/2/HelperUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/工具类分享/2/HelperUtil.h -------------------------------------------------------------------------------- /textTools/工具类分享/2/HelperUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/工具类分享/2/HelperUtil.m -------------------------------------------------------------------------------- /textTools/工具类分享/3/LXFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/工具类分享/3/LXFileManager.h -------------------------------------------------------------------------------- /textTools/工具类分享/3/LXFileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/工具类分享/3/LXFileManager.m -------------------------------------------------------------------------------- /textTools/工具类分享/4/LocalPushCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/工具类分享/4/LocalPushCenter.h -------------------------------------------------------------------------------- /textTools/工具类分享/4/LocalPushCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/工具类分享/4/LocalPushCenter.m -------------------------------------------------------------------------------- /textTools/工具类分享/5/LXMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/工具类分享/5/LXMacro.h -------------------------------------------------------------------------------- /textTools/工具类分享/工具类说明.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leeSmile/tools/HEAD/textTools/工具类分享/工具类说明.rtf --------------------------------------------------------------------------------