├── .gitignore ├── 1.0.9YYKit中的YYText更新到YYText1.0.7 ├── LICENSE ├── README.md ├── Vendor │ └── WebP.framework │ │ ├── Headers │ │ ├── config.h │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── extras.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h │ │ └── WebP └── YYKit │ ├── Base │ ├── Foundation │ │ ├── NSArray+YYAdd.h │ │ ├── NSArray+YYAdd.m │ │ ├── NSBundle+YYAdd.h │ │ ├── NSBundle+YYAdd.m │ │ ├── NSData+YYAdd.h │ │ ├── NSData+YYAdd.m │ │ ├── NSDate+YYAdd.h │ │ ├── NSDate+YYAdd.m │ │ ├── NSDictionary+YYAdd.h │ │ ├── NSDictionary+YYAdd.m │ │ ├── NSKeyedUnarchiver+YYAdd.h │ │ ├── NSKeyedUnarchiver+YYAdd.m │ │ ├── NSNotificationCenter+YYAdd.h │ │ ├── NSNotificationCenter+YYAdd.m │ │ ├── NSNumber+YYAdd.h │ │ ├── NSNumber+YYAdd.m │ │ ├── NSObject+YYAdd.h │ │ ├── NSObject+YYAdd.m │ │ ├── NSObject+YYAddForARC.h │ │ ├── NSObject+YYAddForARC.m │ │ ├── NSObject+YYAddForKVO.h │ │ ├── NSObject+YYAddForKVO.m │ │ ├── NSString+YYAdd.h │ │ ├── NSString+YYAdd.m │ │ ├── NSThread+YYAdd.h │ │ ├── NSThread+YYAdd.m │ │ ├── NSTimer+YYAdd.h │ │ └── NSTimer+YYAdd.m │ ├── Quartz │ │ ├── CALayer+YYAdd.h │ │ ├── CALayer+YYAdd.m │ │ ├── YYCGUtilities.h │ │ └── YYCGUtilities.m │ ├── UIKit │ │ ├── UIApplication+YYAdd.h │ │ ├── UIApplication+YYAdd.m │ │ ├── UIBarButtonItem+YYAdd.h │ │ ├── UIBarButtonItem+YYAdd.m │ │ ├── UIBezierPath+YYAdd.h │ │ ├── UIBezierPath+YYAdd.m │ │ ├── UIColor+YYAdd.h │ │ ├── UIColor+YYAdd.m │ │ ├── UIControl+YYAdd.h │ │ ├── UIControl+YYAdd.m │ │ ├── UIDevice+YYAdd.h │ │ ├── UIDevice+YYAdd.m │ │ ├── UIFont+YYAdd.h │ │ ├── UIFont+YYAdd.m │ │ ├── UIGestureRecognizer+YYAdd.h │ │ ├── UIGestureRecognizer+YYAdd.m │ │ ├── UIImage+YYAdd.h │ │ ├── UIImage+YYAdd.m │ │ ├── UIScreen+YYAdd.h │ │ ├── UIScreen+YYAdd.m │ │ ├── UIScrollView+YYAdd.h │ │ ├── UIScrollView+YYAdd.m │ │ ├── UITableView+YYAdd.h │ │ ├── UITableView+YYAdd.m │ │ ├── UITextField+YYAdd.h │ │ ├── UITextField+YYAdd.m │ │ ├── UIView+YYAdd.h │ │ └── UIView+YYAdd.m │ └── YYKitMacro.h │ ├── Cache │ ├── YYCache.h │ ├── YYCache.m │ ├── YYDiskCache.h │ ├── YYDiskCache.m │ ├── YYKVStorage.h │ ├── YYKVStorage.m │ ├── YYMemoryCache.h │ └── YYMemoryCache.m │ ├── Image │ ├── Categories │ │ ├── CALayer+YYWebImage.h │ │ ├── CALayer+YYWebImage.m │ │ ├── MKAnnotationView+YYWebImage.h │ │ ├── MKAnnotationView+YYWebImage.m │ │ ├── UIButton+YYWebImage.h │ │ ├── UIButton+YYWebImage.m │ │ ├── UIImageView+YYWebImage.h │ │ ├── UIImageView+YYWebImage.m │ │ ├── _YYWebImageSetter.h │ │ └── _YYWebImageSetter.m │ ├── YYAnimatedImageView.h │ ├── YYAnimatedImageView.m │ ├── YYFrameImage.h │ ├── YYFrameImage.m │ ├── YYImage.h │ ├── YYImage.m │ ├── YYImageCache.h │ ├── YYImageCache.m │ ├── YYImageCoder.h │ ├── YYImageCoder.m │ ├── YYSpriteSheetImage.h │ ├── YYSpriteSheetImage.m │ ├── YYWebImageManager.h │ ├── YYWebImageManager.m │ ├── YYWebImageOperation.h │ └── YYWebImageOperation.m │ ├── Model │ ├── NSObject+YYModel.h │ ├── NSObject+YYModel.m │ ├── YYClassInfo.h │ └── YYClassInfo.m │ ├── Text │ ├── Component │ │ ├── YYTextContainerView.h │ │ ├── YYTextContainerView.m │ │ ├── YYTextDebugOption.h │ │ ├── YYTextDebugOption.m │ │ ├── YYTextEffectWindow.h │ │ ├── YYTextEffectWindow.m │ │ ├── YYTextInput.h │ │ ├── YYTextInput.m │ │ ├── YYTextKeyboardManager.h │ │ ├── YYTextKeyboardManager.m │ │ ├── YYTextLayout.h │ │ ├── YYTextLayout.m │ │ ├── YYTextLine.h │ │ ├── YYTextLine.m │ │ ├── YYTextMagnifier.h │ │ ├── YYTextMagnifier.m │ │ ├── YYTextSelectionView.h │ │ └── YYTextSelectionView.m │ ├── String │ │ ├── NSAttributedString+YYText.h │ │ ├── NSAttributedString+YYText.m │ │ ├── NSParagraphStyle+YYText.h │ │ ├── NSParagraphStyle+YYText.m │ │ ├── UIPasteboard+YYText.h │ │ ├── UIPasteboard+YYText.m │ │ ├── UIView+YYText.h │ │ ├── UIView+YYText.m │ │ ├── YYTextArchiver.h │ │ ├── YYTextArchiver.m │ │ ├── YYTextAttribute.h │ │ ├── YYTextAttribute.m │ │ ├── YYTextParser.h │ │ ├── YYTextParser.m │ │ ├── YYTextRubyAnnotation.h │ │ ├── YYTextRubyAnnotation.m │ │ ├── YYTextRunDelegate.h │ │ ├── YYTextRunDelegate.m │ │ ├── YYTextUtilities.h │ │ └── YYTextUtilities.m │ ├── YYLabel.h │ ├── YYLabel.m │ ├── YYTextView.h │ └── YYTextView.m │ ├── Utility │ ├── YYAsyncLayer.h │ ├── YYAsyncLayer.m │ ├── YYDispatchQueuePool.h │ ├── YYDispatchQueuePool.m │ ├── YYFileHash.h │ ├── YYFileHash.m │ ├── YYGestureRecognizer.h │ ├── YYGestureRecognizer.m │ ├── YYKeychain.h │ ├── YYKeychain.m │ ├── YYReachability.h │ ├── YYReachability.m │ ├── YYSentinel.h │ ├── YYSentinel.m │ ├── YYTextAsyncLayer.h │ ├── YYTextAsyncLayer.m │ ├── YYTextTransaction.h │ ├── YYTextTransaction.m │ ├── YYTextWeakProxy.h │ ├── YYTextWeakProxy.m │ ├── YYThreadSafeArray.h │ ├── YYThreadSafeArray.m │ ├── YYThreadSafeDictionary.h │ ├── YYThreadSafeDictionary.m │ ├── YYTimer.h │ ├── YYTimer.m │ ├── YYTransaction.h │ ├── YYTransaction.m │ ├── YYWeakProxy.h │ └── YYWeakProxy.m │ └── YYKit.h ├── CJBaseHelper.podspec ├── CJBaseHelper └── CJBaseHelper │ ├── AppInfoCJHelper │ ├── AppInfoCJHelper.h │ └── AppInfoCJHelper.m │ ├── AuthorizationCJHelper │ ├── AuthorizationCJHelper.h │ └── AuthorizationCJHelper.m │ ├── DeviceCJHelper │ ├── DeviceCJHelper.h │ └── DeviceCJHelper.m │ ├── HookCJHelper │ ├── HookCJHelper.h │ └── HookCJHelper.m │ ├── NSCalendarCJHelper │ ├── CJDateModel.h │ ├── CJDateModel.m │ ├── NSCalendarCJHelper.h │ └── NSCalendarCJHelper.m │ ├── NSDateFormatterCJHelper │ ├── NSDateFormatterCJHelper.h │ └── NSDateFormatterCJHelper.m │ ├── NSObjectCJHelper │ ├── NSObjectCJHelper.h │ └── NSObjectCJHelper.m │ ├── NSOperationQueueCJHelper │ ├── NSOperationQueueCJHelper.h │ └── NSOperationQueueCJHelper.m │ ├── ServerCJHelper │ ├── ServerSensitiveCJHelper.h │ ├── ServerSensitiveCJHelper.m │ ├── ServerTimeCJHelper.h │ └── ServerTimeCJHelper.m │ ├── UIViewControllerCJHelper │ ├── UIViewCJHelper.h │ ├── UIViewCJHelper.m │ ├── UIViewControllerCJHelper.h │ └── UIViewControllerCJHelper.m │ └── WebCJHelper │ ├── WebCJHelper.h │ └── WebCJHelper.m ├── CJBaseOverlayKit └── CJProgressHUD │ ├── CJProgressHUD.h │ └── CJProgressHUD.m ├── CJBaseTest.podspec ├── CJBaseTest ├── Test │ ├── CJTestCase.h │ └── CJTestCase.m └── UITest │ ├── CJUITestCase.h │ └── CJUITestCase.m ├── CJBaseUIKit-Swift.podspec ├── CJBaseUIKit-Swift ├── CJAlert │ ├── CJAlert.swift │ ├── CJAlertView.swift │ └── CQAlertManager.swift ├── CJBaseTableViewCell │ ├── CJBaseTableViewCell.h │ ├── CJBaseTableViewCell.m │ └── Resources │ │ ├── cjCheckBoxGreen2NO.png │ │ ├── cjCheckBoxGreen2YES.png │ │ ├── cjCheckBoxGreenNO@2x.png │ │ ├── cjCheckBoxGreenYES@2x.png │ │ └── cjCheckBoxOrangeYES@2x.png ├── CJBaseTableViewHeaderFooterView │ ├── CJTableViewHeaderFooterView.h │ └── CJTableViewHeaderFooterView.m ├── CJSlider │ ├── CJAdsorbModel │ │ ├── CJAdsorbModel.h │ │ └── CJAdsorbModel.m │ ├── CJBaseUISlider.h │ ├── CJBaseUISlider.m │ ├── CJPlayerSlider │ │ ├── CJPlayerSlider.h │ │ └── CJPlayerSlider.m │ ├── CJSlider.h │ ├── CJSliderControl │ │ ├── CJRangeSliderControl.h │ │ ├── CJRangeSliderControl.m │ │ ├── CJSliderControl.h │ │ ├── CJSliderControl.m │ │ ├── CJSliderPopover.h │ │ ├── CJSliderPopover.m │ │ ├── CJSliderThumb.h │ │ └── CJSliderThumb.m │ └── CJSwitchSlider │ │ ├── CJSwitchSlider.h │ │ ├── CJSwitchSlider.m │ │ ├── CJSwitchSliderStatusModel.h │ │ └── CJSwitchSliderStatusModel.m ├── CJSwitchView │ ├── CJSwitchView.h │ └── CJSwitchView.m ├── CJTextView │ ├── CJTextView.h │ └── CJTextView.m ├── CJToast │ ├── CJToast.swift │ ├── Resources │ │ ├── CJToast_error.png │ │ ├── CJToast_error@2x.png │ │ ├── CJToast_error@3x.png │ │ ├── CJToast_success.png │ │ ├── CJToast_success@2x.png │ │ └── CJToast_success@3x.png │ └── UIViewController+CJToast.swift ├── CJUIKit-Swift.h ├── UIButton │ ├── UIButton+CJMoreProperty.swift │ └── UIButton+CJUpDownStructure.swift ├── UIColor │ └── UIColor+CJHex.swift ├── UIImage │ ├── Base │ │ ├── UIImage+CJCreate.h │ │ ├── UIImage+CJCreate.m │ │ ├── UIImage+CJFixOrientation.h │ │ ├── UIImage+CJFixOrientation.m │ │ ├── UIImage+CJTransformSize.h │ │ └── UIImage+CJTransformSize.m │ ├── Data │ │ ├── UIImage+CJBase64.h │ │ └── UIImage+CJBase64.m │ ├── Edit │ │ ├── UIImage+CJBlur.h │ │ ├── UIImage+CJBlur.m │ │ ├── UIImage+CJChangeColor.h │ │ ├── UIImage+CJChangeColor.m │ │ ├── UIImage+CJMakeCircle.h │ │ ├── UIImage+CJMakeCircle.m │ │ ├── UIImage+CJRotateAngle.h │ │ ├── UIImage+CJRotateAngle.m │ │ ├── UIImage+CJSplitImageIntoTwoParts.h │ │ └── UIImage+CJSplitImageIntoTwoParts.m │ └── UIImageCJCategory.h ├── UILabel │ └── CJLabel.swift ├── UINavigationBar │ ├── UINavigationBar+CJChangeBG.h │ └── UINavigationBar+CJChangeBG.m ├── UIScrollView │ └── CJKeyboardAvoiding │ │ ├── CJKeyboardAvoidingScrollView.h │ │ ├── CJKeyboardAvoidingScrollView.m │ │ ├── CJKeyboardAvoidingTableView.h │ │ ├── CJKeyboardAvoidingTableView.m │ │ ├── UIScrollView+CJKeyboardAvoiding.h │ │ └── UIScrollView+CJKeyboardAvoiding.m ├── UITextField │ ├── CJTextField │ │ ├── CJExtraTextTextField.h │ │ ├── CJExtraTextTextField.m │ │ ├── CJTextField.h │ │ └── CJTextField.m │ ├── UITextField+CJForbidKeyboard.h │ ├── UITextField+CJForbidKeyboard.m │ ├── UITextField+CJPadding.h │ ├── UITextField+CJPadding.m │ ├── UITextField+CJSelectedTextRange.h │ ├── UITextField+CJSelectedTextRange.m │ ├── UITextField+CJTextChangeBlock.h │ ├── UITextField+CJTextChangeBlock.m │ └── UITextFieldCJCategory.h ├── UIToolbar │ ├── CJDefaultToolbar.h │ ├── CJDefaultToolbar.m │ ├── UISearchBar+CJAddInputAccessoryView.h │ ├── UISearchBar+CJAddInputAccessoryView.m │ ├── UITextField+CJAddInputAccessoryView.h │ └── UITextField+CJAddInputAccessoryView.m ├── UIView │ ├── CJAnimation │ │ ├── UIView+CJAnimation.h │ │ └── UIView+CJAnimation.m │ ├── CJDragAction │ │ ├── UIView+CJDragAction.h │ │ ├── UIView+CJDragAction.m │ │ ├── UIView+CJKeepBounds.h │ │ └── UIView+CJKeepBounds.m │ ├── CJGestureRecognizer │ │ ├── UIView+CJGestureRecognizer.h │ │ └── UIView+CJGestureRecognizer.m │ ├── CJPopupAction │ │ ├── UIView+CJPopupInView.swift │ │ └── UIView+CJShowExtendView.swift │ ├── CJShakeAction │ │ ├── UIView+CJShake.h │ │ └── UIView+CJShake.m │ ├── UIView+CJExclusiveTouch.h │ └── UIView+CJExclusiveTouch.m ├── UIViewController │ ├── Resources │ │ ├── cjBackBarButtonItem@2x.png │ │ ├── cjBackBarButtonItem@3x.png │ │ ├── cjBackBarButtonItemGray@2x.png │ │ └── cjBackBarButtonItemGray@3x.png │ ├── UIViewController+CJCustomBackBarButtonItem.h │ ├── UIViewController+CJCustomBackBarButtonItem.m │ ├── UIViewController+CJSystemBackButtonHandler.h │ ├── UIViewController+CJSystemBackButtonHandler.m │ ├── UIViewController+CJSystemComposeView.h │ └── UIViewController+CJSystemComposeView.m └── UIWindow │ ├── UIWindow+CJSnapshot.h │ └── UIWindow+CJSnapshot.m ├── CJBaseUIKit.podspec ├── CJBaseUIKit ├── CJBaseTableViewCell │ ├── CJBaseTableViewCell.h │ ├── CJBaseTableViewCell.m │ └── Resources │ │ ├── cjCheckBoxGreen2NO.png │ │ ├── cjCheckBoxGreen2YES.png │ │ ├── cjCheckBoxGreenNO@2x.png │ │ ├── cjCheckBoxGreenYES@2x.png │ │ └── cjCheckBoxOrangeYES@2x.png ├── CJBaseTableViewHeaderFooterView │ ├── CJTableViewHeaderFooterView.h │ └── CJTableViewHeaderFooterView.m ├── CJSlider │ ├── CJAdsorbModel │ │ ├── CJAdsorbModel.h │ │ └── CJAdsorbModel.m │ ├── CJBaseUISlider.h │ ├── CJBaseUISlider.m │ ├── CJPlayerSlider │ │ ├── CJPlayerSlider.h │ │ └── CJPlayerSlider.m │ ├── CJSlider.h │ ├── CJSliderControl │ │ ├── CJRangeSliderControl.h │ │ ├── CJRangeSliderControl.m │ │ ├── CJSliderControl.h │ │ ├── CJSliderControl.m │ │ ├── CJSliderPopover.h │ │ ├── CJSliderPopover.m │ │ ├── CJSliderThumb.h │ │ └── CJSliderThumb.m │ └── CJSwitchSlider │ │ ├── CJSwitchSlider.h │ │ ├── CJSwitchSlider.m │ │ ├── CJSwitchSliderStatusModel.h │ │ └── CJSwitchSliderStatusModel.m ├── CJSwitchView │ ├── CJSwitchView.h │ └── CJSwitchView.m ├── CJUIKit.h ├── CJUIKitConstant │ ├── CJUIKitConstant.h │ └── CJUIKitConstant.m ├── UIButton │ ├── CJBadgeButton │ │ ├── CJBadgeButton.h │ │ └── CJBadgeButton.m │ ├── CJButton.h │ ├── CJButton.m │ ├── UIButton+CJMoreProperty.h │ ├── UIButton+CJMoreProperty.m │ ├── UIButton+CJStructure.h │ └── UIButton+CJStructure.m ├── UIColor │ ├── UIColor+CJHex.h │ └── UIColor+CJHex.m ├── UIImage │ ├── Base │ │ ├── UIImage+CJCreate.h │ │ ├── UIImage+CJCreate.m │ │ ├── UIImage+CJFixOrientation.h │ │ ├── UIImage+CJFixOrientation.m │ │ ├── UIImage+CJTransformSize.h │ │ └── UIImage+CJTransformSize.m │ ├── CompressHelper │ │ ├── UIImageCJCompressHelper.h │ │ └── UIImageCJCompressHelper.m │ ├── CutHelper │ │ ├── CJImageTrimmedModel.h │ │ ├── CJImageTrimmedModel.m │ │ ├── UIImageCJCutHelper.h │ │ └── UIImageCJCutHelper.m │ ├── Data │ │ ├── UIImage+CJBase64.h │ │ └── UIImage+CJBase64.m │ ├── Edit │ │ ├── UIImage+CJBlur.h │ │ ├── UIImage+CJBlur.m │ │ ├── UIImage+CJChangeColor.h │ │ ├── UIImage+CJChangeColor.m │ │ ├── UIImage+CJMakeCircle.h │ │ ├── UIImage+CJMakeCircle.m │ │ ├── UIImage+CJRotateAngle.h │ │ ├── UIImage+CJRotateAngle.m │ │ ├── UIImage+CJSplitImageIntoTwoParts.h │ │ └── UIImage+CJSplitImageIntoTwoParts.m │ └── UIImageCJCategory.h ├── UILabel │ ├── CJLabel.h │ └── CJLabel.m ├── UINavigationBar │ ├── UINavigationBar+CJChangeBG.h │ └── UINavigationBar+CJChangeBG.m ├── UIScrollView │ └── CJKeyboardAvoiding │ │ ├── CJKeyboardAvoidingScrollView.h │ │ ├── CJKeyboardAvoidingScrollView.m │ │ ├── CJKeyboardAvoidingTableView.h │ │ ├── CJKeyboardAvoidingTableView.m │ │ ├── UIScrollView+CJKeyboardAvoiding.h │ │ └── UIScrollView+CJKeyboardAvoiding.m ├── UITableView │ ├── UITableView+CJEmptyView.h │ └── UITableView+CJEmptyView.m ├── UITextField │ ├── CJTextField │ │ ├── CJExtraTextTextField.h │ │ ├── CJExtraTextTextField.m │ │ ├── CJTextField.h │ │ └── CJTextField.m │ ├── UITextField+CJPadding.h │ ├── UITextField+CJPadding.m │ ├── UITextField+CJSelectedTextRange.h │ ├── UITextField+CJSelectedTextRange.m │ ├── UITextField+CJTextChangeBlock.h │ ├── UITextField+CJTextChangeBlock.m │ └── UITextFieldCJCategory.h ├── UITextHeightCenterCJHelper │ └── Helper │ │ ├── UITextInputHeightCJHelper.h │ │ ├── UITextInputHeightCJHelper.m │ │ ├── UITextView+CJVerticalCenter.h │ │ └── UITextView+CJVerticalCenter.m ├── UITextInputCJHelper │ ├── Helper │ │ ├── CJSubStringUtil.h │ │ ├── CJSubStringUtil.m │ │ ├── UITextInputChangeResultModel.h │ │ ├── UITextInputChangeResultModel.m │ │ ├── UITextInputCursorCJHelper.h │ │ ├── UITextInputCursorCJHelper.m │ │ ├── UITextInputLimitCJHelper.h │ │ └── UITextInputLimitCJHelper.m │ ├── TextField │ │ ├── CJTextFieldDelegate.h │ │ ├── CJTextFieldDelegate.m │ │ ├── UITextField+CJBlock.h │ │ └── UITextField+CJBlock.m │ └── TextView │ │ ├── CJTextViewDelegate.h │ │ ├── CJTextViewDelegate.m │ │ ├── UITextView+CJBlock.h │ │ └── UITextView+CJBlock.m ├── UITextView │ └── CJTextView │ │ ├── CJTextView.h │ │ └── CJTextView.m ├── UIToolbar │ ├── CJDefaultToolbar.h │ ├── CJDefaultToolbar.m │ ├── UISearchBar+CJAddInputAccessoryView.h │ ├── UISearchBar+CJAddInputAccessoryView.m │ ├── UITextField+CJAddInputAccessoryView.h │ └── UITextField+CJAddInputAccessoryView.m ├── UIView │ ├── CJAddCorner │ │ ├── UIView+CJRounderCorner.h │ │ └── UIView+CJRounderCorner.m │ ├── CJAnimation │ │ ├── UIView+CJAnimation.h │ │ └── UIView+CJAnimation.m │ ├── CJAutoMoveUp │ │ ├── UIView+CJAutoMoveUp.h │ │ └── UIView+CJAutoMoveUp.m │ ├── CJDragAction │ │ ├── UIView+CJDragAction.h │ │ ├── UIView+CJDragAction.m │ │ ├── UIView+CJPanAction.h │ │ └── UIView+CJPanAction.m │ ├── CJGestureRecognizer │ │ ├── UIView+CJGestureRecognizer.h │ │ └── UIView+CJGestureRecognizer.m │ ├── CJShakeAction │ │ ├── UIView+CJShake.h │ │ └── UIView+CJShake.m │ ├── UIView+CJExclusiveTouch.h │ ├── UIView+CJExclusiveTouch.m │ └── UIViewCJCategory.h ├── UIViewController │ ├── Resources │ │ ├── cjBackBarButtonItem@2x.png │ │ ├── cjBackBarButtonItem@3x.png │ │ ├── cjBackBarButtonItemGray@2x.png │ │ └── cjBackBarButtonItemGray@3x.png │ ├── UIViewController+CJCustomBackBarButtonItem.h │ ├── UIViewController+CJCustomBackBarButtonItem.m │ ├── UIViewController+CJSystemBackButtonHandler.h │ ├── UIViewController+CJSystemBackButtonHandler.m │ ├── UIViewController+CJSystemComposeView.h │ └── UIViewController+CJSystemComposeView.m └── UIWindow │ ├── UIWindow+CJSnapshot.h │ └── UIWindow+CJSnapshot.m ├── CJBaseUtil.podspec ├── CJBaseUtil ├── CJAppLastUtil │ ├── CJAppLastLaunchInfo.h │ ├── CJAppLastLaunchInfo.m │ ├── CJAppLastLaunchInfoManager.h │ ├── CJAppLastLaunchInfoManager.m │ ├── CJAppLastUser.h │ ├── CJAppLastUser.m │ ├── CJAppLastUserManager.h │ ├── CJAppLastUserManager.m │ ├── CJAppLastUtil.h │ └── CJAppLastUtil.m ├── CJCallUtil │ ├── CJCallUtil.h │ └── CJCallUtil.m ├── CJConvertUtil │ ├── CJConvertUtil.h │ └── CJConvertUtil.m ├── CJDataUtil │ ├── CJDataAllUtil.h │ ├── CJDataUtil+CJSectionDataModel.h │ ├── CJDataUtil+CJSectionDataModel.m │ ├── CJDataUtil+NormalSearch.h │ ├── CJDataUtil+NormalSearch.m │ ├── CJDataUtil+SortCategory.h │ ├── CJDataUtil+SortCategory.m │ ├── CJDataUtil+SortOrder.h │ ├── CJDataUtil+SortOrder.m │ ├── CJDataUtil+Value.h │ ├── CJDataUtil+Value.m │ ├── CJDataUtil.h │ ├── CJDataUtil.m │ ├── CJRealtimeSearchUtil.h │ ├── CJRealtimeSearchUtil.m │ └── Models │ │ ├── CJModuleModel.h │ │ ├── CJModuleModel.m │ │ ├── CJSectionDataModel.h │ │ ├── CJSectionDataModel.m │ │ ├── Search │ │ ├── CJSearchResult.h │ │ ├── CJSearchResult.m │ │ ├── NSObject+CJSearchProperty.h │ │ └── NSObject+CJSearchProperty.m │ │ └── Sorted │ │ ├── CJSortedCategoryResult.h │ │ └── CJSortedCategoryResult.m ├── CJDateUtil │ ├── CJDateOtherUtil.h │ └── CJDateOtherUtil.m ├── CJDecimalUtil │ ├── CJDecimalUtil.h │ ├── CJDecimalUtil.m │ ├── CJDistanceUtil.h │ ├── CJDistanceUtil.m │ ├── CJMoneyUtil.h │ └── CJMoneyUtil.m ├── CJIndentedStringUtil │ ├── CJIndentedStringUtil.h │ └── CJIndentedStringUtil.m ├── CJKeyboardUtil │ ├── CJKeyboardUtil.h │ └── CJKeyboardUtil.m ├── CJLaunchImageUtil │ ├── CJLaunchImageUtil.h │ └── CJLaunchImageUtil.m ├── CJManager │ ├── CJLocationChangeManager │ │ ├── CJLocationChangeManager.h │ │ ├── CJLocationChangeManager.m │ │ ├── CJLocationChangeModel.h │ │ └── CJLocationChangeModel.m │ ├── CJModuleManager │ │ ├── CJModuleManager.h │ │ └── CJModuleManager.m │ ├── CJSuspendWindowManager │ │ ├── CJSuspendWindowManager.h │ │ └── CJSuspendWindowManager.m │ └── CJTimerManager │ │ ├── CJTimerManager.h │ │ ├── CJTimerManager.m │ │ ├── CJTimerModel.h │ │ └── CJTimerModel.m ├── CJPinyinHelper │ ├── CJPinyinHelper.h │ └── CJPinyinHelper.m ├── CJQRCodeUtil │ ├── CJQRCodeUtil.h │ └── CJQRCodeUtil.m ├── CJRandomNameUtil.h ├── CJRandomNameUtil.m ├── CJRandomNameUtil.txt ├── CJUtil.h └── UIUtil │ └── PrivateSetting │ ├── PrivateSetting.h │ └── PrivateSetting.m ├── CJComplexUIKit.podspec ├── CJComplexUIKit ├── CJCollectionView │ └── CJBaseCollectionViewCell │ │ ├── CJBaseCollectionViewCell.h │ │ ├── CJBaseCollectionViewCell.m │ │ ├── CJFullBottomCollectionViewCell.h │ │ ├── CJFullBottomCollectionViewCell.m │ │ ├── CJFullCenterCollectionViewCell.h │ │ └── CJFullCenterCollectionViewCell.m ├── CJComplexUIKit.h ├── CJScrollView │ └── CJBaseScrollView │ │ ├── CJSingleTableViewCellDataSource │ │ ├── CJSingleTableViewCellDataSource.h │ │ ├── CJSingleTableViewCellDataSource.m │ │ ├── CJSingleTableViewCellDataSource2.h │ │ └── CJSingleTableViewCellDataSource2.m │ │ ├── ChangeLog.md │ │ └── README.md └── UIViewController │ ├── CJBaseWebViewController │ ├── CJBaseWebViewController.h │ ├── CJBaseWebViewController.m │ └── CJEmptyViewProtocol.h │ └── ProgressWebViewController │ ├── ProgressWebViewController.h │ └── ProgressWebViewController.m ├── CJComplexUIKitDemo ├── CJComplexUIKitDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── CJComplexUIKitDemo.xcscheme ├── CJComplexUIKitDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CJComplexUIKitDemo │ ├── AppDelegate+WindowRootViewController.h │ ├── AppDelegate+WindowRootViewController.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── Modules │ │ ├── CollectionViewDemo │ │ │ ├── Base │ │ │ │ ├── CvDemo_Complex+Event.h │ │ │ │ ├── CvDemo_Complex+Event.m │ │ │ │ ├── CvDemo_Complex.h │ │ │ │ ├── CvDemo_Complex.m │ │ │ │ ├── CvDemo_Complex.xib │ │ │ │ ├── Detail.h │ │ │ │ ├── Detail.m │ │ │ │ ├── Detail.xib │ │ │ │ └── View │ │ │ │ │ ├── CustomCollectionViewCell.h │ │ │ │ │ ├── CustomCollectionViewCell.m │ │ │ │ │ ├── CustomCollectionViewCell.xib │ │ │ │ │ ├── NibCell.xib │ │ │ │ │ ├── cvSupplementaryFoot.h │ │ │ │ │ ├── cvSupplementaryFoot.m │ │ │ │ │ ├── cvSupplementaryFoot.xib │ │ │ │ │ ├── cvSupplementaryHead.h │ │ │ │ │ ├── cvSupplementaryHead.m │ │ │ │ │ └── cvSupplementaryHead.xib │ │ │ ├── CollectionHomeViewController.h │ │ │ ├── CollectionHomeViewController.m │ │ │ ├── CycleADView │ │ │ │ ├── MemoryAD │ │ │ │ │ ├── MemoryAD05.jpg │ │ │ │ │ ├── MemoryAD08.jpg │ │ │ │ │ ├── MemoryAD09.jpg │ │ │ │ │ ├── MemoryAD29.jpg │ │ │ │ │ ├── MemoryAD32.jpg │ │ │ │ │ ├── MemoryADExample01.jpg │ │ │ │ │ ├── MemoryADExample02.jpg │ │ │ │ │ ├── MemoryADExample03.jpg │ │ │ │ │ ├── MemoryADExample04.jpg │ │ │ │ │ ├── MemoryADExample05.jpg │ │ │ │ │ ├── MemoryADExplain01.jpg │ │ │ │ │ ├── MemoryADKnowledge01.jpg │ │ │ │ │ ├── MemoryADKnowledge02.jpg │ │ │ │ │ ├── MemoryADKnowledge03.jpg │ │ │ │ │ ├── MemoryADKnowledge04.jpg │ │ │ │ │ ├── MemoryADKnowledge05.jpg │ │ │ │ │ ├── MemoryADKnowledge06.jpg │ │ │ │ │ ├── MemoryADKnowledge07.jpg │ │ │ │ │ ├── MemoryADPose01.jpg │ │ │ │ │ ├── MemoryADPose02.jpg │ │ │ │ │ ├── MemoryADResult01.gif │ │ │ │ │ ├── MemoryADResult02.jpg │ │ │ │ │ ├── MemoryADTime01.jpg │ │ │ │ │ └── MemoryADTime02.jpg │ │ │ │ ├── MemoryADCollectionViewCell.h │ │ │ │ ├── MemoryADCollectionViewCell.m │ │ │ │ ├── MyADModel.h │ │ │ │ ├── MyADModel.m │ │ │ │ ├── MyCycleADViewController.h │ │ │ │ ├── MyCycleADViewController.m │ │ │ │ └── MyCycleADViewController.xib │ │ │ └── ImageChooseCollectionView │ │ │ │ ├── IjinbuNetworkClient+Login.h │ │ │ │ ├── IjinbuNetworkClient+Login.m │ │ │ │ ├── UploadDirectlyImagePickerViewController.h │ │ │ │ ├── UploadDirectlyImagePickerViewController.m │ │ │ │ ├── UploadNoneImagePickerViewController.h │ │ │ │ └── UploadNoneImagePickerViewController.m │ │ ├── ScrollViewDemo │ │ │ ├── ScaleHeadViewDemo │ │ │ │ ├── PullScaleTopImageViewController.h │ │ │ │ ├── PullScaleTopImageViewController.m │ │ │ │ ├── PullScaleTopImageViewController.xib │ │ │ │ ├── bgSky@2x.jpg │ │ │ │ └── header@2x.jpg │ │ │ ├── ScrollViewHomeViewController.h │ │ │ └── ScrollViewHomeViewController.m │ │ ├── TableViewDemo │ │ │ ├── 1Use │ │ │ │ ├── TableViewController.h │ │ │ │ ├── TableViewController.m │ │ │ │ ├── TableViewController.xib │ │ │ │ ├── TvDemo_Complex+Event.h │ │ │ │ ├── TvDemo_Complex+Event.m │ │ │ │ ├── TvDemo_Complex.h │ │ │ │ ├── TvDemo_Complex.m │ │ │ │ ├── TvDemo_Complex.xib │ │ │ │ └── View │ │ │ │ │ ├── CustomTableViewCell.h │ │ │ │ │ ├── CustomTableViewCell.m │ │ │ │ │ ├── CustomTableViewCell.xib │ │ │ │ │ ├── SHeaderHome2.h │ │ │ │ │ ├── SHeaderHome2.m │ │ │ │ │ ├── SHeaderHome2.xib │ │ │ │ │ ├── add_red.png │ │ │ │ │ └── add_red@2x.png │ │ │ ├── 2Optimize │ │ │ │ ├── ReuseDataSourceTableViewController.h │ │ │ │ └── ReuseDataSourceTableViewController.m │ │ │ ├── 3OpenTableView │ │ │ │ ├── MyOpenTableView.h │ │ │ │ ├── MyOpenTableView.m │ │ │ │ ├── OpenTableViewController1.h │ │ │ │ ├── OpenTableViewController1.m │ │ │ │ ├── OpenTableViewController1.xib │ │ │ │ ├── OpenTableViewController2.h │ │ │ │ ├── OpenTableViewController2.m │ │ │ │ ├── OpenTableViewController2.xib │ │ │ │ ├── TableViewHeader.h │ │ │ │ ├── TableViewHeader.m │ │ │ │ └── TableViewHeader.xib │ │ │ ├── TableHomeViewController.h │ │ │ └── TableHomeViewController.m │ │ └── WebViewDemo │ │ │ ├── 1RequestHTML │ │ │ ├── AboutViewController.h │ │ │ ├── AboutViewController.m │ │ │ ├── LocalViewController.h │ │ │ ├── LocalViewController.m │ │ │ └── localWeb.html │ │ │ ├── 2OCJS │ │ │ ├── JSOC.html │ │ │ ├── JSOCViewController.h │ │ │ ├── JSOCViewController.m │ │ │ ├── OCJS.html │ │ │ ├── OCJSViewController.h │ │ │ └── OCJSViewController.m │ │ │ ├── 3H5ImgSetting │ │ │ ├── H5ImgSetting.html │ │ │ ├── H5ImgSettingBaseViewController.h │ │ │ ├── H5ImgSettingBaseViewController.m │ │ │ ├── H5ImgSettingDataViewController.h │ │ │ ├── H5ImgSettingDataViewController.m │ │ │ ├── H5ImgSettingPathViewController.h │ │ │ ├── H5ImgSettingPathViewController.m │ │ │ └── add_red_Big.png │ │ │ ├── EmptyView │ │ │ ├── DataEmptyViewFactory.h │ │ │ └── DataEmptyViewFactory.m │ │ │ ├── LocalBaseWebViewController.h │ │ │ ├── LocalBaseWebViewController.m │ │ │ ├── NetworkBaseWebViewController.h │ │ │ ├── NetworkBaseWebViewController.m │ │ │ ├── WebHomeViewController.h │ │ │ └── WebHomeViewController.m │ ├── PrefixHeader.pch │ ├── Service │ │ └── AppInfo │ │ │ ├── AppInfo.h │ │ │ ├── AppInfo.m │ │ │ ├── AppInfoManager.h │ │ │ └── AppInfoManager.m │ └── main.m ├── CJComplexUIKitDemoTests │ ├── CJComplexUIKitDemoTests.m │ ├── CJDataUtilTest.m │ ├── Info.plist │ └── Models │ │ ├── TestCityModel.h │ │ └── TestCityModel.m ├── CJComplexUIKitDemoUITests │ ├── CJComplexUIKitDemoUITests.m │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── AFNetworking │ ├── AFNetworking │ │ ├── AFCompatibilityMacros.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── WKWebView+AFNetworking.h │ │ └── WKWebView+AFNetworking.m │ ├── CJBaseEffectKit │ ├── CJBaseEffectKit │ │ ├── CJDataEmptyView │ │ │ ├── CJDataEmptyView.h │ │ │ ├── CJDataEmptyView.m │ │ │ ├── Resources │ │ │ │ ├── cjNetworkDisable@2x.png │ │ │ │ ├── cjNetworkDisable@3x.png │ │ │ │ ├── cjNetworkError@2x.png │ │ │ │ └── cjNetworkError@3x.png │ │ │ ├── UIScrollView+CJAddFillView.h │ │ │ └── UIScrollView+CJAddFillView.m │ │ └── CJScaleHeadView │ │ │ ├── CJScaleHeadView.h │ │ │ ├── CJScaleHeadView.m │ │ │ ├── LEOHeaderView.h │ │ │ ├── LEOHeaderView.m │ │ │ ├── MyUserInfoScaleHeadView.h │ │ │ └── MyUserInfoScaleHeadView.m │ └── README.en.md │ ├── CJCollectionViewLayout │ ├── CJCollectionViewLayout │ │ ├── CardSwitchLayout │ │ │ ├── CJCardSwitchFlowLayout.h │ │ │ └── CJCardSwitchFlowLayout.m │ │ ├── FlowLayout │ │ │ ├── CQCollectionViewFlowLayout.h │ │ │ ├── CQCollectionViewFlowLayout.m │ │ │ ├── UICollectionView+CJFlowLayoutScrollDirection.h │ │ │ └── UICollectionView+CJFlowLayoutScrollDirection.m │ │ ├── HorizontalLayout │ │ │ ├── CJCellHorizontalLayout.h │ │ │ └── CJCellHorizontalLayout.m │ │ ├── MainSubLastLayout │ │ │ ├── CJCellMainSubLastLayout.h │ │ │ └── CJCellMainSubLastLayout.m │ │ ├── MainSubLayout │ │ │ ├── CJCellMainSubLayout.h │ │ │ └── CJCellMainSubLayout.m │ │ └── WaterLayout │ │ │ ├── CJCellWaterLayout.h │ │ │ └── CJCellWaterLayout.m │ └── README.en.md │ ├── CJContainer │ ├── CJContainer │ │ ├── ContainerModelFactory │ │ │ ├── CQContainerModelFactory.h │ │ │ └── CQContainerModelFactory.m │ │ ├── CustomViewsFixedContainer │ │ │ ├── CQFixedItemLengthContainerView.h │ │ │ ├── CQFixedItemLengthContainerView.m │ │ │ ├── CQFixedSpacingContainerView.h │ │ │ ├── CQFixedSpacingContainerView.m │ │ │ ├── UIView+CJAddDistributeViews.h │ │ │ └── UIView+CJAddDistributeViews.m │ │ └── ImageLabelContainer │ │ │ ├── CQHorizontalImageLabelView.h │ │ │ ├── CQHorizontalImageLabelView.m │ │ │ ├── CQHorizontalLabelLabelView.h │ │ │ ├── CQHorizontalLabelLabelView.m │ │ │ ├── CQHorizontalTwoViewContainerView.h │ │ │ ├── CQHorizontalTwoViewContainerView.m │ │ │ ├── CQVerticalImageLabelView.h │ │ │ ├── CQVerticalImageLabelView.m │ │ │ └── ConstraintHelper │ │ │ ├── CQLeftIconRightCustomConstraintHelper.h │ │ │ └── CQLeftIconRightCustomConstraintHelper.m │ └── README.en.md │ ├── CJFile │ ├── CJFile │ │ └── CJFileManager │ │ │ ├── CJFileManager+CalculateFileSize.h │ │ │ ├── CJFileManager+CalculateFileSize.m │ │ │ ├── CJFileManager+DeleteCleanFile.h │ │ │ ├── CJFileManager+DeleteCleanFile.m │ │ │ ├── CJFileManager+GetCreatePath.h │ │ │ ├── CJFileManager+GetCreatePath.m │ │ │ ├── CJFileManager+SaveFileData.h │ │ │ ├── CJFileManager+SaveFileData.m │ │ │ ├── CJFileManager.h │ │ │ └── CJFileManager.m │ ├── LICENSE │ └── README.md │ ├── CJImagePickerKit │ ├── CJImagePickerKit │ │ ├── CustomImagePickerController │ │ │ ├── CJImagePickerNavigatorController.h │ │ │ ├── CJImagePickerNavigatorController.m │ │ │ ├── CJImagePickerTableView.h │ │ │ ├── CJImagePickerTableView.m │ │ │ ├── CJImagePickerViewController.h │ │ │ ├── CJImagePickerViewController.m │ │ │ ├── Models │ │ │ │ ├── CJAlumbImageModel.h │ │ │ │ ├── CJAlumbImageModel.m │ │ │ │ ├── CJAlumbSectionDataModel.h │ │ │ │ └── CJAlumbSectionDataModel.m │ │ │ ├── Resources │ │ │ │ ├── cjAlbumCheckedNormal@2x.png │ │ │ │ └── cjAlbumCheckedSelect@2x.png │ │ │ └── Views │ │ │ │ ├── CJMultiColumnPhotoTableViewCell.h │ │ │ │ ├── CJMultiColumnPhotoTableViewCell.m │ │ │ │ ├── CJPhotoGridCell.h │ │ │ │ └── CJPhotoGridCell.m │ │ └── SystemImagePickerController │ │ │ ├── CJSystemImagePickerController.h │ │ │ └── CJSystemImagePickerController.m │ └── README.en.md │ ├── CJNetwork │ ├── CJNetwork │ │ ├── AFNetworkingSerializerEncrypt │ │ │ ├── AFHTTPSessionManager+CJSerializerEncrypt.h │ │ │ └── AFHTTPSessionManager+CJSerializerEncrypt.m │ │ ├── AFNetworkingUploadComponent │ │ │ ├── AFNetworkingUploadAPI │ │ │ │ ├── AFHTTPSessionManager+CJUploadFile.h │ │ │ │ └── AFHTTPSessionManager+CJUploadFile.m │ │ │ └── UIView+AFNetworkingUpload │ │ │ │ ├── CJUploadProgressView.h │ │ │ │ ├── CJUploadProgressView.m │ │ │ │ ├── UIView+AFNetworkingUpload.h │ │ │ │ └── UIView+AFNetworkingUpload.m │ │ └── CJNetworkCommon │ │ │ ├── CJNetworkCache │ │ │ ├── CJCacheDataModel.h │ │ │ ├── CJCacheDataModel.m │ │ │ ├── CJNetworkCacheManager.h │ │ │ ├── CJNetworkCacheManager.m │ │ │ ├── CJNetworkCacheUtil.h │ │ │ └── CJNetworkCacheUtil.m │ │ │ ├── CJRequestCommonHelper.h │ │ │ ├── CJRequestCommonHelper.m │ │ │ └── CJRequestInfo │ │ │ ├── CJRequestErrorUtil.h │ │ │ ├── CJRequestErrorUtil.m │ │ │ ├── CJRequestInfoModel.h │ │ │ └── CJRequestInfoModel.m │ ├── LICENSE │ └── README.md │ ├── CJNetworkFileModel │ ├── CJNetworkFileModel │ │ └── CJUploadFileModelsOwner │ │ │ ├── CJUploadFileModel.h │ │ │ ├── CJUploadFileModel.m │ │ │ ├── CJUploadFileModelsOwner.h │ │ │ ├── CJUploadFileModelsOwner.m │ │ │ ├── CJUploadMomentInfo.h │ │ │ ├── CJUploadMomentInfo.m │ │ │ └── CJUploadMomentState.h │ ├── LICENSE │ └── README.md │ ├── CJOverlayView │ ├── CJOverlayView │ │ ├── AlertView_Horizontal │ │ │ ├── CQHorizontalAlertView.h │ │ │ └── CQHorizontalAlertView.m │ │ ├── AlertView_Image │ │ │ ├── CQCancelOKImageAlertView.swift │ │ │ └── CQIKnowImageAlertView.swift │ │ ├── AlertView_Normal │ │ │ ├── CJAlertComponentFactory.h │ │ │ ├── CJAlertComponentFactory.m │ │ │ ├── CJBaseAlertView.h │ │ │ ├── CJBaseAlertView.m │ │ │ ├── CJMessageAlertView.h │ │ │ ├── CJMessageAlertView.m │ │ │ ├── CJTextInputAlertView.h │ │ │ ├── CJTextInputAlertView.m │ │ │ └── UIButton │ │ │ │ ├── CJAlertBottomButtonsFactory.h │ │ │ │ ├── CJAlertBottomButtonsFactory.m │ │ │ │ ├── CJAlertBottomButtonsModel.h │ │ │ │ ├── CJAlertBottomButtonsModel.m │ │ │ │ ├── CJAlertButtonFactory.h │ │ │ │ ├── CJAlertButtonFactory.m │ │ │ │ ├── UIButton+CJAlertProperty.h │ │ │ │ └── UIButton+CJAlertProperty.m │ │ ├── CJActionSheet │ │ │ ├── CJActionSheetCellContainer.h │ │ │ ├── CJActionSheetCellContainer.m │ │ │ ├── CJActionSheetHeader.h │ │ │ ├── CJActionSheetHeader.m │ │ │ ├── CJActionSheetModel.h │ │ │ ├── CJActionSheetModel.m │ │ │ ├── CJActionSheetTableViewCell.h │ │ │ ├── CJActionSheetTableViewCell.m │ │ │ ├── CJActionSheetView.h │ │ │ ├── CJActionSheetView.m │ │ │ ├── CJScreenBottomTableViewCell.h │ │ │ ├── CJScreenBottomTableViewCell.m │ │ │ └── NormalSheetView │ │ │ │ ├── CQBaseTwoEventSheetView.h │ │ │ │ ├── CQBaseTwoEventSheetView.m │ │ │ │ ├── CQDangerConfirmSheetView.h │ │ │ │ ├── CQDangerConfirmSheetView.m │ │ │ │ ├── CQImageSheetView.h │ │ │ │ ├── CQImageSheetView.m │ │ │ │ ├── CQTwoEventSheetView.h │ │ │ │ └── CQTwoEventSheetView.m │ │ ├── CJBaseOverlayTheme │ │ │ ├── CJBaseOverlayThemeManager.h │ │ │ ├── CJBaseOverlayThemeManager.m │ │ │ ├── CJBaseOverlayThemeModel.h │ │ │ ├── CJBaseOverlayThemeModel.m │ │ │ ├── CJOverlayAlertThemeModel.h │ │ │ ├── CJOverlayAlertThemeModel.m │ │ │ ├── CJOverlayCommonThemeModel.h │ │ │ ├── CJOverlayCommonThemeModel.m │ │ │ ├── CJOverlaySheetThemeModel.h │ │ │ ├── CJOverlaySheetThemeModel.m │ │ │ └── TextSizeUtil │ │ │ │ ├── CJOverlayTextSizeUtil.h │ │ │ │ └── CJOverlayTextSizeUtil.m │ │ └── CJProgressHUD │ │ │ └── IndicatorProgressHUD │ │ │ ├── CJIndicatorProgressHUDView.h │ │ │ └── CJIndicatorProgressHUDView.m │ └── README.en.md │ ├── CJPopupCreater │ ├── CJPopupCreater │ │ ├── Base │ │ │ ├── Show │ │ │ │ ├── PopupViewFrameCJHelper.h │ │ │ │ ├── PopupViewFrameCJHelper.m │ │ │ │ ├── UIView+CJPopupSuperviewSubview.h │ │ │ │ └── UIView+CJPopupSuperviewSubview.m │ │ │ └── View │ │ │ │ ├── CJBasePopupBlankView.h │ │ │ │ └── CJBasePopupBlankView.m │ │ ├── BottomBlank │ │ │ ├── Show │ │ │ │ ├── CJBottomBlankView+ShowHide.h │ │ │ │ ├── CJBottomBlankView+ShowHide.m │ │ │ │ ├── CJBottomBlankViewShowHelper.h │ │ │ │ ├── CJBottomBlankViewShowHelper.m │ │ │ │ └── CJBottomBlankViewShowHelperProtocal.h │ │ │ └── View │ │ │ │ ├── CJBottomBlankView.h │ │ │ │ └── CJBottomBlankView.m │ │ ├── CenterBlank │ │ │ ├── Show │ │ │ │ ├── CJCenterBlankView+ShowHide.h │ │ │ │ ├── CJCenterBlankView+ShowHide.m │ │ │ │ ├── CJCenterBlankViewShowHelper.h │ │ │ │ ├── CJCenterBlankViewShowHelper.m │ │ │ │ └── CJCenterBlankViewShowHelperProtocal.h │ │ │ └── View │ │ │ │ ├── CJCenterBlankView.h │ │ │ │ └── CJCenterBlankView.m │ │ └── EffectAndCornerHelper │ │ │ ├── CQEffectAndCornerHelper.h │ │ │ ├── CQEffectAndCornerHelper.m │ │ │ ├── CQEffectEnum.h │ │ │ ├── CQEffectViewFactory.h │ │ │ └── CQEffectViewFactory.m │ └── README.en.md │ ├── CQActionCollectionView │ ├── CQActionCollectionView │ │ ├── ActionCollectionViewDataSource │ │ │ ├── CJActionCollectionViewDataSource.h │ │ │ └── CJActionCollectionViewDataSource.m │ │ ├── ActionImage │ │ │ ├── CQActionImageCellContentContainerView.h │ │ │ ├── CQActionImageCellContentContainerView.m │ │ │ ├── CQActionImageCollectionView.h │ │ │ ├── CQActionImageCollectionView.m │ │ │ ├── CQActionImageCollectionViewCell.h │ │ │ ├── CQActionImageCollectionViewCell.m │ │ │ └── Resources │ │ │ │ ├── icon_cell_image_add@2x.png │ │ │ │ └── icon_cell_image_delete@2x.png │ │ └── AddDeleteContainer │ │ │ ├── CQBaseAddDeleteContainerView.h │ │ │ └── CQBaseAddDeleteContainerView.m │ └── README.en.md │ ├── CQCollectionViewDataSource │ ├── CQCollectionViewDataSource │ │ └── ExtralItem │ │ │ ├── CJDataSourceSettingModel.h │ │ │ ├── CJDataSourceSettingModel.m │ │ │ ├── CQExtralItemCollectionViewDataSource.h │ │ │ └── CQExtralItemCollectionViewDataSource.m │ └── README.en.md │ ├── CQDemoKit │ ├── CQDemoKit │ │ ├── BaseUIKit │ │ │ ├── CQTSBorderStateButton.h │ │ │ ├── CQTSBorderStateButton.m │ │ │ ├── CQTSButtonFactory.h │ │ │ ├── CQTSButtonFactory.m │ │ │ ├── CQTSContainerViewFactory.h │ │ │ ├── CQTSContainerViewFactory.m │ │ │ ├── CQTSSwitchViewFactory.h │ │ │ ├── CQTSSwitchViewFactory.m │ │ │ ├── UIButton+CQTSMoreProperty.h │ │ │ ├── UIButton+CQTSMoreProperty.m │ │ │ ├── UISwitch+CQTSMoreProperty.h │ │ │ ├── UISwitch+CQTSMoreProperty.m │ │ │ └── image │ │ │ │ ├── CQTSImageLoader.h │ │ │ │ ├── CQTSImageLoader.m │ │ │ │ ├── UIImageView+CQTSBaseUtil.h │ │ │ │ └── UIImageView+CQTSBaseUtil.m │ │ ├── BaseUtil │ │ │ ├── CJUIKitAlertUtil.h │ │ │ ├── CJUIKitAlertUtil.m │ │ │ ├── CJUIKitToastUtil.h │ │ │ └── CJUIKitToastUtil.m │ │ ├── BaseVC │ │ │ ├── Base │ │ │ │ ├── BaseWindow │ │ │ │ │ ├── CQTSSuspendWindow.h │ │ │ │ │ ├── CQTSSuspendWindow.m │ │ │ │ │ └── SuspendWindowFactory │ │ │ │ │ │ ├── CQTSSuspendButtonRootViewController.h │ │ │ │ │ │ ├── CQTSSuspendButtonRootViewController.m │ │ │ │ │ │ ├── CQTSSuspendWindowFactory.h │ │ │ │ │ │ └── CQTSSuspendWindowFactory.m │ │ │ │ ├── CJUIKitBaseViewController.h │ │ │ │ ├── CJUIKitBaseViewController.m │ │ │ │ └── Model │ │ │ │ │ ├── CQDMModuleModel.h │ │ │ │ │ ├── CQDMModuleModel.m │ │ │ │ │ ├── CQDMSectionDataModel.h │ │ │ │ │ └── CQDMSectionDataModel.m │ │ │ ├── Collection │ │ │ │ ├── CJUIKitBaseCollectionHomeViewController.h │ │ │ │ ├── CJUIKitBaseCollectionHomeViewController.m │ │ │ │ ├── CJUIKitCollectionViewCell.h │ │ │ │ └── CJUIKitCollectionViewCell.m │ │ │ ├── ScrollView │ │ │ │ ├── CJUIKitBaseScrollViewController.h │ │ │ │ └── CJUIKitBaseScrollViewController.m │ │ │ ├── TabBar │ │ │ │ ├── CJUIKitBaseTabBarViewController.h │ │ │ │ ├── CJUIKitBaseTabBarViewController.m │ │ │ │ ├── Model │ │ │ │ │ ├── CQDMTabBarModel.h │ │ │ │ │ └── CQDMTabBarModel.m │ │ │ │ └── Resources │ │ │ │ │ ├── icons8-calendar.png │ │ │ │ │ ├── icons8-folder.png │ │ │ │ │ ├── icons8-home.png │ │ │ │ │ ├── icons8-menu.png │ │ │ │ │ └── icons8-settings.png │ │ │ ├── TableView │ │ │ │ ├── CJUIKitBaseHomeViewController.h │ │ │ │ └── CJUIKitBaseHomeViewController.m │ │ │ └── TextView │ │ │ │ ├── CJUIKitBaseBigTextViewController.h │ │ │ │ ├── CJUIKitBaseBigTextViewController.m │ │ │ │ ├── CJUIKitBaseTextViewController.h │ │ │ │ ├── CJUIKitBaseTextViewController.m │ │ │ │ ├── Model │ │ │ │ ├── CJDealTextModel.h │ │ │ │ ├── CJDealTextModel.m │ │ │ │ ├── CJDealTextModelFactory.h │ │ │ │ ├── CJDealTextModelFactory.m │ │ │ │ ├── CQDMSectionDataModel+CJDealTextModel.h │ │ │ │ └── CQDMSectionDataModel+CJDealTextModel.m │ │ │ │ └── View │ │ │ │ ├── CJValidateStringBigTableViewCell.h │ │ │ │ ├── CJValidateStringBigTableViewCell.m │ │ │ │ ├── CJValidateStringTableViewCell.h │ │ │ │ └── CJValidateStringTableViewCell.m │ │ └── Helper │ │ │ ├── UIImage+CQDemoKit.h │ │ │ └── UIImage+CQDemoKit.m │ ├── LICENSE │ └── README.md │ ├── CQImageAddDeleteListKit │ ├── CQImageAddDeleteListKit │ │ └── AddDeletePickUpload │ │ │ ├── CJImageAddDeletePickCollectionView.h │ │ │ ├── CJImageAddDeletePickCollectionView.m │ │ │ ├── CJImageAddDeletePickUploadCollectionView.h │ │ │ ├── CJImageAddDeletePickUploadCollectionView.m │ │ │ ├── CJImageAddUploadProgressView.h │ │ │ ├── CJImageAddUploadProgressView.m │ │ │ ├── CJUploadImagePickerUtil │ │ │ ├── CJUploadImagePickerUtil.h │ │ │ ├── CJUploadImagePickerUtil.m │ │ │ └── Models │ │ │ │ ├── CJImageUploadFileModelsOwner.h │ │ │ │ ├── CJImageUploadFileModelsOwner.m │ │ │ │ ├── CJVideoUploadFileModelsOwner.h │ │ │ │ └── CJVideoUploadFileModelsOwner.m │ │ │ └── PhotoChooseUtil │ │ │ ├── CJChooseFileActionSheetUtil.h │ │ │ ├── CJChooseFileActionSheetUtil.m │ │ │ ├── CJMediaBrowserUtil.h │ │ │ └── CJMediaBrowserUtil.m │ └── README.en.md │ ├── CQImageKit │ ├── CQImageKit │ │ ├── AvatarImageView │ │ │ ├── CQAvatarImageView.h │ │ │ └── CQAvatarImageView.m │ │ ├── BaseImageView │ │ │ ├── CQBaseImageView.h │ │ │ ├── CQBaseImageView.m │ │ │ ├── CQLoadingImageView.h │ │ │ ├── CQLoadingImageView.m │ │ │ ├── CQStatusImageModel.h │ │ │ ├── CQStatusImageModel.m │ │ │ ├── CQStatusImageView.h │ │ │ ├── CQStatusImageView.m │ │ │ ├── UIImageView+CQAvatarAndPhotoList.h │ │ │ ├── UIImageView+CQAvatarAndPhotoList.m │ │ │ ├── UIImageView+CQBaseUtil.h │ │ │ ├── UIImageView+CQBaseUtil.m │ │ │ ├── UIImageView+CQUtil.h │ │ │ └── UIImageView+CQUtil.m │ │ ├── Loader │ │ │ ├── CQImageBusinessEnum.h │ │ │ ├── CQImageLoader.h │ │ │ ├── CQImageLoader.m │ │ │ ├── CQImageLoaderCut.h │ │ │ ├── CQImageLoaderCut.m │ │ │ ├── CQPlaceholderImageSource.h │ │ │ ├── CQPlaceholderImageSource.m │ │ │ └── Helper │ │ │ │ ├── CQImageUploadSimulateUtil.h │ │ │ │ ├── CQImageUploadSimulateUtil.m │ │ │ │ ├── UIImage+CQImageKit.h │ │ │ │ ├── UIImage+CQImageKit.m │ │ │ │ ├── UIImageCQCutHelper.h │ │ │ │ └── UIImageCQCutHelper.m │ │ ├── Resources │ │ │ ├── icon_banned@2x.png │ │ │ ├── icon_banned@3x.png │ │ │ ├── img_default_avatar@2x.png │ │ │ ├── img_default_avatar@3x.png │ │ │ ├── img_error_default@2x.png │ │ │ └── img_error_default@3x.png │ │ └── ViewBannedCategory │ │ │ ├── CQImageEnum.h │ │ │ ├── UIView+CQOverlayImageBanned.h │ │ │ └── UIView+CQOverlayImageBanned.m │ └── README.en.md │ ├── CQImagePickerKit │ ├── CQImagePickerKit │ │ ├── ImagePickerController │ │ │ ├── CQImagePickerControllerFactory.h │ │ │ └── CQImagePickerControllerFactory.m │ │ ├── ImagePickerControllerUtil │ │ │ ├── CQImagePickerControllerUtil.h │ │ │ └── CQImagePickerControllerUtil.m │ │ └── ImagePickerPermissionManager │ │ │ ├── CQImagePickerPermissionManager.h │ │ │ └── CQImagePickerPermissionManager.m │ └── README.en.md │ ├── CQNetworkPublic │ ├── CQNetworkPublic │ │ └── Base │ │ │ ├── CJRequestNetworkEnum.h │ │ │ ├── CJRequestSetting │ │ │ ├── CJRequestCacheSettingModel.h │ │ │ ├── CJRequestCacheSettingModel.m │ │ │ ├── CJRequestSettingEnum.h │ │ │ ├── CJRequestSettingModel.h │ │ │ └── CJRequestSettingModel.m │ │ │ ├── CJRequestURLHelper.h │ │ │ ├── CJRequestURLHelper.m │ │ │ └── ResponseModel │ │ │ ├── CJResponseModel.h │ │ │ └── CJResponseModel.m │ ├── LICENSE │ └── README.md │ ├── CQOverlayKit │ ├── CQOverlayKit │ │ ├── Base │ │ │ ├── HUDAnimation │ │ │ │ ├── UIView+CQHUDRotationAnimation.h │ │ │ │ └── UIView+CQHUDRotationAnimation.m │ │ │ ├── UIView+CQPopupOverlayAction.h │ │ │ └── UIView+CQPopupOverlayAction.m │ │ ├── CQActionSheet │ │ │ ├── CQActionSheetUtil.h │ │ │ ├── CQActionSheetUtil.m │ │ │ ├── CQActionSheetUtil2.h │ │ │ ├── CQActionSheetUtil2.m │ │ │ ├── CQActionSheetUtil3.h │ │ │ ├── CQActionSheetUtil3.m │ │ │ ├── CQJumpMapUtil.h │ │ │ ├── CQJumpMapUtil.m │ │ │ └── Resources │ │ │ │ ├── pc_sample_image_choose@2x.png │ │ │ │ └── pc_sample_image_choose@3x.png │ │ ├── CQAlert │ │ │ ├── CQAlertManager.h │ │ │ ├── CQAlertManager.m │ │ │ ├── CQAlertUtil.h │ │ │ ├── CQAlertUtil.m │ │ │ ├── CQPermissionAlertUtil+Location.h │ │ │ ├── CQPermissionAlertUtil+Location.m │ │ │ ├── CQPermissionAlertUtil.h │ │ │ ├── CQPermissionAlertUtil.m │ │ │ ├── Resources │ │ │ │ ├── alert_permission_location@2x.png │ │ │ │ └── alert_permission_location@3x.png │ │ │ ├── UIAlertUtil.h │ │ │ └── UIAlertUtil.m │ │ └── Theme │ │ │ ├── CJBaseOverlayThemeModel+Text.h │ │ │ ├── CJBaseOverlayThemeModel+Text.m │ │ │ ├── CQHUDThemeModel.h │ │ │ ├── CQHUDThemeModel.m │ │ │ ├── CQOverlayTextModel.h │ │ │ ├── CQOverlayTextModel.m │ │ │ ├── CQOverlayTheme.h │ │ │ ├── CQToastThemeModel.h │ │ │ └── CQToastThemeModel.m │ └── README.en.md │ ├── CQPopupCreater_Base │ ├── CQPopupCreater_Base │ │ ├── BaseBottom │ │ │ ├── 4ViewCategory │ │ │ │ ├── Factory │ │ │ │ │ ├── CQBottomPanlineBlankViewFactory.h │ │ │ │ │ └── CQBottomPanlineBlankViewFactory.m │ │ │ │ ├── UIView+CQPopupBottomPanlineAction.h │ │ │ │ ├── UIView+CQPopupBottomPanlineAction.m │ │ │ │ ├── UIView+CQPopupBottomSelfAction.h │ │ │ │ └── UIView+CQPopupBottomSelfAction.m │ │ │ └── PoupIsCustomAddPanline │ │ │ │ ├── CQBottomBlankAndPanlinePopupEnum.h │ │ │ │ ├── CQBottomCustomWithPanlineView.h │ │ │ │ ├── CQBottomCustomWithPanlineView.m │ │ │ │ ├── CQBottomPanlineBlankView.h │ │ │ │ ├── CQBottomPanlineBlankView.m │ │ │ │ └── SubView │ │ │ │ ├── CQPanLineView.h │ │ │ │ └── CQPanLineView.m │ │ └── BaseCenter │ │ │ ├── 2BlankView │ │ │ ├── CQCenterBlankAndNormalPopupEnum.h │ │ │ ├── CQCenterBlankView.h │ │ │ └── CQCenterBlankView.m │ │ │ └── 4ViewCategory │ │ │ ├── UIView+CQPopupCenterSelfAction.h │ │ │ └── UIView+CQPopupCenterSelfAction.m │ └── README.en.md │ ├── DZNEmptyDataSet │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── UIScrollView+EmptyDataSet.h │ │ └── UIScrollView+EmptyDataSet.m │ ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ ├── AFAutoPurgingImageCache.h │ │ │ ├── AFCompatibilityMacros.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFImageDownloader.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── WKWebView+AFNetworking.h │ │ ├── CJBaseEffectKit │ │ │ ├── CJDataEmptyView.h │ │ │ ├── CJScaleHeadView.h │ │ │ ├── LEOHeaderView.h │ │ │ ├── MyUserInfoScaleHeadView.h │ │ │ └── UIScrollView+CJAddFillView.h │ │ ├── CJBaseHelper │ │ │ ├── AppInfoCJHelper.h │ │ │ ├── AuthorizationCJHelper.h │ │ │ ├── CJDateModel.h │ │ │ ├── DeviceCJHelper.h │ │ │ ├── HookCJHelper.h │ │ │ ├── NSCalendarCJHelper.h │ │ │ ├── NSDateFormatterCJHelper.h │ │ │ ├── NSObjectCJHelper.h │ │ │ ├── NSOperationQueueCJHelper.h │ │ │ ├── ServerSensitiveCJHelper.h │ │ │ ├── ServerTimeCJHelper.h │ │ │ ├── UIViewControllerCJHelper.h │ │ │ └── WebCJHelper.h │ │ ├── CJBaseUIKit │ │ │ ├── CJAdsorbModel.h │ │ │ ├── CJBadgeButton.h │ │ │ ├── CJBaseTableViewCell.h │ │ │ ├── CJBaseUISlider.h │ │ │ ├── CJButton.h │ │ │ ├── CJDefaultToolbar.h │ │ │ ├── CJExtraTextTextField.h │ │ │ ├── CJImageTrimmedModel.h │ │ │ ├── CJKeyboardAvoidingScrollView.h │ │ │ ├── CJKeyboardAvoidingTableView.h │ │ │ ├── CJLabel.h │ │ │ ├── CJPlayerSlider.h │ │ │ ├── CJRangeSliderControl.h │ │ │ ├── CJSlider.h │ │ │ ├── CJSliderControl.h │ │ │ ├── CJSliderPopover.h │ │ │ ├── CJSliderThumb.h │ │ │ ├── CJSubStringUtil.h │ │ │ ├── CJSwitchSlider.h │ │ │ ├── CJSwitchSliderStatusModel.h │ │ │ ├── CJTableViewHeaderFooterView.h │ │ │ ├── CJTextField.h │ │ │ ├── CJTextFieldDelegate.h │ │ │ ├── CJTextView.h │ │ │ ├── CJTextViewDelegate.h │ │ │ ├── CJUIKit.h │ │ │ ├── CJUIKitConstant.h │ │ │ ├── UIButton+CJMoreProperty.h │ │ │ ├── UIButton+CJStructure.h │ │ │ ├── UIColor+CJHex.h │ │ │ ├── UIImage+CJBase64.h │ │ │ ├── UIImage+CJBlur.h │ │ │ ├── UIImage+CJChangeColor.h │ │ │ ├── UIImage+CJCreate.h │ │ │ ├── UIImage+CJFixOrientation.h │ │ │ ├── UIImage+CJMakeCircle.h │ │ │ ├── UIImage+CJRotateAngle.h │ │ │ ├── UIImage+CJSplitImageIntoTwoParts.h │ │ │ ├── UIImage+CJTransformSize.h │ │ │ ├── UIImageCJCategory.h │ │ │ ├── UIImageCJCompressHelper.h │ │ │ ├── UIImageCJCutHelper.h │ │ │ ├── UINavigationBar+CJChangeBG.h │ │ │ ├── UIScrollView+CJKeyboardAvoiding.h │ │ │ ├── UISearchBar+CJAddInputAccessoryView.h │ │ │ ├── UITextField+CJAddInputAccessoryView.h │ │ │ ├── UITextField+CJBlock.h │ │ │ ├── UITextField+CJPadding.h │ │ │ ├── UITextField+CJSelectedTextRange.h │ │ │ ├── UITextField+CJTextChangeBlock.h │ │ │ ├── UITextFieldCJCategory.h │ │ │ ├── UITextInputChangeResultModel.h │ │ │ ├── UITextInputCursorCJHelper.h │ │ │ ├── UITextInputHeightCJHelper.h │ │ │ ├── UITextInputLimitCJHelper.h │ │ │ ├── UITextView+CJBlock.h │ │ │ ├── UITextView+CJVerticalCenter.h │ │ │ ├── UIView+CJAnimation.h │ │ │ ├── UIView+CJAutoMoveUp.h │ │ │ ├── UIView+CJDragAction.h │ │ │ ├── UIView+CJExclusiveTouch.h │ │ │ ├── UIView+CJGestureRecognizer.h │ │ │ ├── UIView+CJPanAction.h │ │ │ ├── UIView+CJRounderCorner.h │ │ │ ├── UIView+CJShake.h │ │ │ ├── UIViewCJCategory.h │ │ │ ├── UIViewController+CJCustomBackBarButtonItem.h │ │ │ ├── UIViewController+CJSystemBackButtonHandler.h │ │ │ ├── UIViewController+CJSystemComposeView.h │ │ │ └── UIWindow+CJSnapshot.h │ │ ├── CJCollectionViewLayout │ │ │ ├── CJCardSwitchFlowLayout.h │ │ │ ├── CJCellHorizontalLayout.h │ │ │ ├── CJCellMainSubLastLayout.h │ │ │ ├── CJCellMainSubLayout.h │ │ │ ├── CJCellWaterLayout.h │ │ │ ├── CQCollectionViewFlowLayout.h │ │ │ └── UICollectionView+CJFlowLayoutScrollDirection.h │ │ ├── CJComplexUIKit │ │ │ ├── CJBaseCollectionViewCell.h │ │ │ ├── CJFullBottomCollectionViewCell.h │ │ │ ├── CJFullCenterCollectionViewCell.h │ │ │ ├── CJSingleTableViewCellDataSource.h │ │ │ └── CJSingleTableViewCellDataSource2.h │ │ ├── CJContainer │ │ │ ├── CQContainerModelFactory.h │ │ │ ├── CQFixedItemLengthContainerView.h │ │ │ ├── CQFixedSpacingContainerView.h │ │ │ ├── CQHorizontalImageLabelView.h │ │ │ ├── CQHorizontalLabelLabelView.h │ │ │ ├── CQHorizontalTwoViewContainerView.h │ │ │ ├── CQLeftIconRightCustomConstraintHelper.h │ │ │ ├── CQVerticalImageLabelView.h │ │ │ └── UIView+CJAddDistributeViews.h │ │ ├── CJFile │ │ │ ├── CJFileManager+CalculateFileSize.h │ │ │ ├── CJFileManager+DeleteCleanFile.h │ │ │ ├── CJFileManager+GetCreatePath.h │ │ │ ├── CJFileManager+SaveFileData.h │ │ │ └── CJFileManager.h │ │ ├── CJFoundation │ │ │ ├── NSDictionary+CJConvert.h │ │ │ ├── NSJSONSerialization+CJCategory.h │ │ │ ├── NSString+CJAttributedString.h │ │ │ ├── NSString+CJCategory.h │ │ │ ├── NSString+CJCut.h │ │ │ ├── NSString+CJEncoding.h │ │ │ ├── NSString+CJEncryption.h │ │ │ ├── NSString+CJTextLength.h │ │ │ ├── NSString+CJTextSize.h │ │ │ ├── NSString+CJTextSizeInView.h │ │ │ └── NSString+CJValidate.h │ │ ├── CJImagePickerKit │ │ │ ├── CJAlumbImageModel.h │ │ │ ├── CJAlumbSectionDataModel.h │ │ │ ├── CJImagePickerNavigatorController.h │ │ │ ├── CJImagePickerTableView.h │ │ │ ├── CJImagePickerViewController.h │ │ │ ├── CJMultiColumnPhotoTableViewCell.h │ │ │ ├── CJPhotoGridCell.h │ │ │ └── CJSystemImagePickerController.h │ │ ├── CJNetwork │ │ │ ├── AFHTTPSessionManager+CJSerializerEncrypt.h │ │ │ ├── AFHTTPSessionManager+CJUploadFile.h │ │ │ ├── CJCacheDataModel.h │ │ │ ├── CJNetworkCacheManager.h │ │ │ ├── CJNetworkCacheUtil.h │ │ │ ├── CJRequestCommonHelper.h │ │ │ ├── CJRequestErrorUtil.h │ │ │ ├── CJRequestInfoModel.h │ │ │ ├── CJUploadProgressView.h │ │ │ └── UIView+AFNetworkingUpload.h │ │ ├── CJNetworkFileModel │ │ │ ├── CJUploadFileModel.h │ │ │ ├── CJUploadFileModelsOwner.h │ │ │ ├── CJUploadMomentInfo.h │ │ │ └── CJUploadMomentState.h │ │ ├── CJOverlayView │ │ │ ├── CJActionSheetCellContainer.h │ │ │ ├── CJActionSheetHeader.h │ │ │ ├── CJActionSheetModel.h │ │ │ ├── CJActionSheetTableViewCell.h │ │ │ ├── CJActionSheetView.h │ │ │ ├── CJAlertBottomButtonsFactory.h │ │ │ ├── CJAlertBottomButtonsModel.h │ │ │ ├── CJAlertButtonFactory.h │ │ │ ├── CJAlertComponentFactory.h │ │ │ ├── CJBaseAlertView.h │ │ │ ├── CJBaseOverlayThemeManager.h │ │ │ ├── CJBaseOverlayThemeModel.h │ │ │ ├── CJIndicatorProgressHUDView.h │ │ │ ├── CJMessageAlertView.h │ │ │ ├── CJOverlayAlertThemeModel.h │ │ │ ├── CJOverlayCommonThemeModel.h │ │ │ ├── CJOverlaySheetThemeModel.h │ │ │ ├── CJOverlayTextSizeUtil.h │ │ │ ├── CJScreenBottomTableViewCell.h │ │ │ ├── CJTextInputAlertView.h │ │ │ ├── CQBaseTwoEventSheetView.h │ │ │ ├── CQDangerConfirmSheetView.h │ │ │ ├── CQHorizontalAlertView.h │ │ │ ├── CQImageSheetView.h │ │ │ ├── CQTwoEventSheetView.h │ │ │ └── UIButton+CJAlertProperty.h │ │ ├── CJPopupCreater │ │ │ ├── CJBasePopupBlankView.h │ │ │ ├── CJBottomBlankView+ShowHide.h │ │ │ ├── CJBottomBlankView.h │ │ │ ├── CJBottomBlankViewShowHelper.h │ │ │ ├── CJBottomBlankViewShowHelperProtocal.h │ │ │ ├── CJCenterBlankView+ShowHide.h │ │ │ ├── CJCenterBlankView.h │ │ │ ├── CJCenterBlankViewShowHelper.h │ │ │ ├── CJCenterBlankViewShowHelperProtocal.h │ │ │ ├── CQEffectAndCornerHelper.h │ │ │ ├── CQEffectEnum.h │ │ │ ├── CQEffectViewFactory.h │ │ │ ├── PopupViewFrameCJHelper.h │ │ │ └── UIView+CJPopupSuperviewSubview.h │ │ ├── CQActionCollectionView │ │ │ ├── CJActionCollectionViewDataSource.h │ │ │ ├── CQActionImageCellContentContainerView.h │ │ │ ├── CQActionImageCollectionView.h │ │ │ ├── CQActionImageCollectionViewCell.h │ │ │ └── CQBaseAddDeleteContainerView.h │ │ ├── CQDemoKit │ │ │ ├── CJDealTextModel.h │ │ │ ├── CJDealTextModelFactory.h │ │ │ ├── CJUIKitAlertUtil.h │ │ │ ├── CJUIKitBaseBigTextViewController.h │ │ │ ├── CJUIKitBaseCollectionHomeViewController.h │ │ │ ├── CJUIKitBaseHomeViewController.h │ │ │ ├── CJUIKitBaseScrollViewController.h │ │ │ ├── CJUIKitBaseTabBarViewController.h │ │ │ ├── CJUIKitBaseTextViewController.h │ │ │ ├── CJUIKitBaseViewController.h │ │ │ ├── CJUIKitCollectionViewCell.h │ │ │ ├── CJUIKitToastUtil.h │ │ │ ├── CJValidateStringBigTableViewCell.h │ │ │ ├── CJValidateStringTableViewCell.h │ │ │ ├── CQDMModuleModel.h │ │ │ ├── CQDMSectionDataModel+CJDealTextModel.h │ │ │ ├── CQDMSectionDataModel.h │ │ │ ├── CQDMTabBarModel.h │ │ │ ├── CQTSBorderStateButton.h │ │ │ ├── CQTSButtonFactory.h │ │ │ ├── CQTSContainerViewFactory.h │ │ │ ├── CQTSImageLoader.h │ │ │ ├── CQTSSuspendButtonRootViewController.h │ │ │ ├── CQTSSuspendWindow.h │ │ │ ├── CQTSSuspendWindowFactory.h │ │ │ ├── CQTSSwitchViewFactory.h │ │ │ ├── UIButton+CQTSMoreProperty.h │ │ │ ├── UIImage+CQDemoKit.h │ │ │ ├── UIImageView+CQTSBaseUtil.h │ │ │ └── UISwitch+CQTSMoreProperty.h │ │ ├── CQImageAddDeleteListKit │ │ │ ├── CJChooseFileActionSheetUtil.h │ │ │ ├── CJImageAddDeletePickCollectionView.h │ │ │ ├── CJImageAddDeletePickUploadCollectionView.h │ │ │ ├── CJImageAddUploadProgressView.h │ │ │ ├── CJImageUploadFileModelsOwner.h │ │ │ ├── CJMediaBrowserUtil.h │ │ │ ├── CJUploadImagePickerUtil.h │ │ │ └── CJVideoUploadFileModelsOwner.h │ │ ├── CQImageKit │ │ │ ├── CQAvatarImageView.h │ │ │ ├── CQBaseImageView.h │ │ │ ├── CQImageBusinessEnum.h │ │ │ ├── CQImageEnum.h │ │ │ ├── CQImageLoader.h │ │ │ ├── CQImageLoaderCut.h │ │ │ ├── CQImageUploadSimulateUtil.h │ │ │ ├── CQLoadingImageView.h │ │ │ ├── CQPlaceholderImageSource.h │ │ │ ├── CQStatusImageModel.h │ │ │ ├── CQStatusImageView.h │ │ │ ├── UIImage+CQImageKit.h │ │ │ ├── UIImageCQCutHelper.h │ │ │ ├── UIImageView+CQAvatarAndPhotoList.h │ │ │ ├── UIImageView+CQBaseUtil.h │ │ │ ├── UIImageView+CQUtil.h │ │ │ └── UIView+CQOverlayImageBanned.h │ │ ├── CQImagePickerKit │ │ │ ├── CQImagePickerControllerFactory.h │ │ │ ├── CQImagePickerControllerUtil.h │ │ │ └── CQImagePickerPermissionManager.h │ │ ├── CQNetworkPublic │ │ │ ├── CJRequestCacheSettingModel.h │ │ │ ├── CJRequestNetworkEnum.h │ │ │ ├── CJRequestSettingEnum.h │ │ │ ├── CJRequestSettingModel.h │ │ │ ├── CJRequestURLHelper.h │ │ │ └── CJResponseModel.h │ │ ├── CQOverlayKit │ │ │ ├── CJBaseOverlayThemeModel+Text.h │ │ │ ├── CQActionSheetUtil.h │ │ │ ├── CQActionSheetUtil2.h │ │ │ ├── CQActionSheetUtil3.h │ │ │ ├── CQAlertManager.h │ │ │ ├── CQAlertUtil.h │ │ │ ├── CQHUDThemeModel.h │ │ │ ├── CQJumpMapUtil.h │ │ │ ├── CQOverlayTextModel.h │ │ │ ├── CQOverlayTheme.h │ │ │ ├── CQPermissionAlertUtil+Location.h │ │ │ ├── CQPermissionAlertUtil.h │ │ │ ├── CQToastThemeModel.h │ │ │ ├── UIAlertUtil.h │ │ │ ├── UIView+CQHUDRotationAnimation.h │ │ │ └── UIView+CQPopupOverlayAction.h │ │ ├── CQPopupCreater_Base │ │ │ ├── CQBottomBlankAndPanlinePopupEnum.h │ │ │ ├── CQBottomCustomWithPanlineView.h │ │ │ ├── CQBottomPanlineBlankView.h │ │ │ ├── CQBottomPanlineBlankViewFactory.h │ │ │ ├── CQCenterBlankAndNormalPopupEnum.h │ │ │ ├── CQCenterBlankView.h │ │ │ ├── CQPanLineView.h │ │ │ ├── UIView+CQPopupBottomPanlineAction.h │ │ │ ├── UIView+CQPopupBottomSelfAction.h │ │ │ └── UIView+CQPopupCenterSelfAction.h │ │ ├── DZNEmptyDataSet │ │ │ └── UIScrollView+EmptyDataSet.h │ │ ├── IjinbuNetwork │ │ │ ├── CJJSONResponseSerializer.h │ │ │ ├── IjinbuHTTPSessionManager.h │ │ │ ├── IjinbuNetworkClient+UploadFile.h │ │ │ ├── IjinbuNetworkClient.h │ │ │ ├── IjinbuResponseModel.h │ │ │ ├── IjinbuSession.h │ │ │ ├── IjinbuUploadItemResult.h │ │ │ └── IjinbuUser.h │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.h │ │ ├── MJExtension │ │ │ ├── MJExtension.h │ │ │ ├── MJExtensionConst.h │ │ │ ├── MJFoundation.h │ │ │ ├── MJProperty.h │ │ │ ├── MJPropertyKey.h │ │ │ ├── MJPropertyType.h │ │ │ ├── NSObject+MJClass.h │ │ │ ├── NSObject+MJCoding.h │ │ │ ├── NSObject+MJKeyValue.h │ │ │ ├── NSObject+MJProperty.h │ │ │ └── NSString+MJExtension.h │ │ ├── MJPopupViewController │ │ │ ├── MJPopupBackgroundView.h │ │ │ └── UIViewController+MJPopupViewController.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ ├── NJKWebViewProgress │ │ │ ├── NJKWebViewProgress.h │ │ │ └── NJKWebViewProgressView.h │ │ ├── OpenUDID │ │ │ └── OpenUDID.h │ │ ├── SDCycleScrollView │ │ │ ├── SDCollectionViewCell.h │ │ │ ├── SDCycleScrollView.h │ │ │ ├── TAAbstractDotView.h │ │ │ ├── TAAnimatedDotView.h │ │ │ ├── TADotView.h │ │ │ ├── TAPageControl.h │ │ │ └── UIView+SDExtension.h │ │ ├── SDWebImage │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSImage+Compatibility.h │ │ │ ├── SDAnimatedImage.h │ │ │ ├── SDAnimatedImagePlayer.h │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ ├── SDAnimatedImageView.h │ │ │ ├── SDAssociatedObject.h │ │ │ ├── SDAsyncBlockOperation.h │ │ │ ├── SDCallbackQueue.h │ │ │ ├── SDDeviceHelper.h │ │ │ ├── SDDiskCache.h │ │ │ ├── SDDisplayLink.h │ │ │ ├── SDFileAttributeHelper.h │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ ├── SDImageAPNGCoder.h │ │ │ ├── SDImageAWebPCoder.h │ │ │ ├── SDImageAssetManager.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDImageCacheDefine.h │ │ │ ├── SDImageCachesManager.h │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ ├── SDImageCoder.h │ │ │ ├── SDImageCoderHelper.h │ │ │ ├── SDImageCodersManager.h │ │ │ ├── SDImageFrame.h │ │ │ ├── SDImageFramePool.h │ │ │ ├── SDImageGIFCoder.h │ │ │ ├── SDImageGraphics.h │ │ │ ├── SDImageHEICCoder.h │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ ├── SDImageIOCoder.h │ │ │ ├── SDImageLoader.h │ │ │ ├── SDImageLoadersManager.h │ │ │ ├── SDImageTransformer.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDMemoryCache.h │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWebImage.h │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDefine.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ ├── SDWebImageError.h │ │ │ ├── SDWebImageIndicator.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ ├── SDmetamacros.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIColor+SDHexString.h │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ ├── UIImage+Metadata.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+Transform.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIView+WebCache.h │ │ │ ├── UIView+WebCacheOperation.h │ │ │ └── UIView+WebCacheState.h │ │ ├── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ ├── SVProgressAnimatedView.h │ │ │ ├── SVProgressHUD.h │ │ │ └── SVRadialGradientLayer.h │ │ └── YYCache │ │ │ ├── YYCache.h │ │ │ ├── YYDiskCache.h │ │ │ ├── YYKVStorage.h │ │ │ └── YYMemoryCache.h │ └── Public │ │ ├── AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFCompatibilityMacros.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFImageDownloader.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── WKWebView+AFNetworking.h │ │ ├── CJBaseEffectKit │ │ ├── CJDataEmptyView.h │ │ ├── CJScaleHeadView.h │ │ ├── LEOHeaderView.h │ │ ├── MyUserInfoScaleHeadView.h │ │ └── UIScrollView+CJAddFillView.h │ │ ├── CJBaseHelper │ │ ├── AppInfoCJHelper.h │ │ ├── AuthorizationCJHelper.h │ │ ├── CJDateModel.h │ │ ├── DeviceCJHelper.h │ │ ├── HookCJHelper.h │ │ ├── NSCalendarCJHelper.h │ │ ├── NSDateFormatterCJHelper.h │ │ ├── NSObjectCJHelper.h │ │ ├── NSOperationQueueCJHelper.h │ │ ├── ServerSensitiveCJHelper.h │ │ ├── ServerTimeCJHelper.h │ │ ├── UIViewControllerCJHelper.h │ │ └── WebCJHelper.h │ │ ├── CJBaseUIKit │ │ ├── CJAdsorbModel.h │ │ ├── CJBadgeButton.h │ │ ├── CJBaseTableViewCell.h │ │ ├── CJBaseUISlider.h │ │ ├── CJButton.h │ │ ├── CJDefaultToolbar.h │ │ ├── CJExtraTextTextField.h │ │ ├── CJImageTrimmedModel.h │ │ ├── CJKeyboardAvoidingScrollView.h │ │ ├── CJKeyboardAvoidingTableView.h │ │ ├── CJLabel.h │ │ ├── CJPlayerSlider.h │ │ ├── CJRangeSliderControl.h │ │ ├── CJSlider.h │ │ ├── CJSliderControl.h │ │ ├── CJSliderPopover.h │ │ ├── CJSliderThumb.h │ │ ├── CJSubStringUtil.h │ │ ├── CJSwitchSlider.h │ │ ├── CJSwitchSliderStatusModel.h │ │ ├── CJTableViewHeaderFooterView.h │ │ ├── CJTextField.h │ │ ├── CJTextFieldDelegate.h │ │ ├── CJTextView.h │ │ ├── CJTextViewDelegate.h │ │ ├── CJUIKit.h │ │ ├── CJUIKitConstant.h │ │ ├── UIButton+CJMoreProperty.h │ │ ├── UIButton+CJStructure.h │ │ ├── UIColor+CJHex.h │ │ ├── UIImage+CJBase64.h │ │ ├── UIImage+CJBlur.h │ │ ├── UIImage+CJChangeColor.h │ │ ├── UIImage+CJCreate.h │ │ ├── UIImage+CJFixOrientation.h │ │ ├── UIImage+CJMakeCircle.h │ │ ├── UIImage+CJRotateAngle.h │ │ ├── UIImage+CJSplitImageIntoTwoParts.h │ │ ├── UIImage+CJTransformSize.h │ │ ├── UIImageCJCategory.h │ │ ├── UIImageCJCompressHelper.h │ │ ├── UIImageCJCutHelper.h │ │ ├── UINavigationBar+CJChangeBG.h │ │ ├── UIScrollView+CJKeyboardAvoiding.h │ │ ├── UISearchBar+CJAddInputAccessoryView.h │ │ ├── UITextField+CJAddInputAccessoryView.h │ │ ├── UITextField+CJBlock.h │ │ ├── UITextField+CJPadding.h │ │ ├── UITextField+CJSelectedTextRange.h │ │ ├── UITextField+CJTextChangeBlock.h │ │ ├── UITextFieldCJCategory.h │ │ ├── UITextInputChangeResultModel.h │ │ ├── UITextInputCursorCJHelper.h │ │ ├── UITextInputHeightCJHelper.h │ │ ├── UITextInputLimitCJHelper.h │ │ ├── UITextView+CJBlock.h │ │ ├── UITextView+CJVerticalCenter.h │ │ ├── UIView+CJAnimation.h │ │ ├── UIView+CJAutoMoveUp.h │ │ ├── UIView+CJDragAction.h │ │ ├── UIView+CJExclusiveTouch.h │ │ ├── UIView+CJGestureRecognizer.h │ │ ├── UIView+CJPanAction.h │ │ ├── UIView+CJRounderCorner.h │ │ ├── UIView+CJShake.h │ │ ├── UIViewCJCategory.h │ │ ├── UIViewController+CJCustomBackBarButtonItem.h │ │ ├── UIViewController+CJSystemBackButtonHandler.h │ │ ├── UIViewController+CJSystemComposeView.h │ │ └── UIWindow+CJSnapshot.h │ │ ├── CJCollectionViewLayout │ │ ├── CJCardSwitchFlowLayout.h │ │ ├── CJCellHorizontalLayout.h │ │ ├── CJCellMainSubLastLayout.h │ │ ├── CJCellMainSubLayout.h │ │ ├── CJCellWaterLayout.h │ │ ├── CQCollectionViewFlowLayout.h │ │ └── UICollectionView+CJFlowLayoutScrollDirection.h │ │ ├── CJComplexUIKit │ │ ├── CJBaseCollectionViewCell.h │ │ ├── CJFullBottomCollectionViewCell.h │ │ ├── CJFullCenterCollectionViewCell.h │ │ ├── CJSingleTableViewCellDataSource.h │ │ └── CJSingleTableViewCellDataSource2.h │ │ ├── CJContainer │ │ ├── CJContainer-umbrella.h │ │ ├── CJContainer.modulemap │ │ ├── CQContainerModelFactory.h │ │ ├── CQFixedItemLengthContainerView.h │ │ ├── CQFixedSpacingContainerView.h │ │ ├── CQHorizontalImageLabelView.h │ │ ├── CQHorizontalLabelLabelView.h │ │ ├── CQHorizontalTwoViewContainerView.h │ │ ├── CQLeftIconRightCustomConstraintHelper.h │ │ ├── CQVerticalImageLabelView.h │ │ └── UIView+CJAddDistributeViews.h │ │ ├── CJFile │ │ ├── CJFileManager+CalculateFileSize.h │ │ ├── CJFileManager+DeleteCleanFile.h │ │ ├── CJFileManager+GetCreatePath.h │ │ ├── CJFileManager+SaveFileData.h │ │ └── CJFileManager.h │ │ ├── CJFoundation │ │ ├── NSDictionary+CJConvert.h │ │ ├── NSJSONSerialization+CJCategory.h │ │ ├── NSString+CJAttributedString.h │ │ ├── NSString+CJCategory.h │ │ ├── NSString+CJCut.h │ │ ├── NSString+CJEncoding.h │ │ ├── NSString+CJEncryption.h │ │ ├── NSString+CJTextLength.h │ │ ├── NSString+CJTextSize.h │ │ ├── NSString+CJTextSizeInView.h │ │ └── NSString+CJValidate.h │ │ ├── CJImagePickerKit │ │ ├── CJAlumbImageModel.h │ │ ├── CJAlumbSectionDataModel.h │ │ ├── CJImagePickerNavigatorController.h │ │ ├── CJImagePickerTableView.h │ │ ├── CJImagePickerViewController.h │ │ ├── CJMultiColumnPhotoTableViewCell.h │ │ ├── CJPhotoGridCell.h │ │ └── CJSystemImagePickerController.h │ │ ├── CJNetwork │ │ ├── AFHTTPSessionManager+CJSerializerEncrypt.h │ │ ├── AFHTTPSessionManager+CJUploadFile.h │ │ ├── CJCacheDataModel.h │ │ ├── CJNetworkCacheManager.h │ │ ├── CJNetworkCacheUtil.h │ │ ├── CJRequestCommonHelper.h │ │ ├── CJRequestErrorUtil.h │ │ ├── CJRequestInfoModel.h │ │ ├── CJUploadProgressView.h │ │ └── UIView+AFNetworkingUpload.h │ │ ├── CJNetworkFileModel │ │ ├── CJUploadFileModel.h │ │ ├── CJUploadFileModelsOwner.h │ │ ├── CJUploadMomentInfo.h │ │ └── CJUploadMomentState.h │ │ ├── CJOverlayView │ │ ├── CJActionSheetCellContainer.h │ │ ├── CJActionSheetHeader.h │ │ ├── CJActionSheetModel.h │ │ ├── CJActionSheetTableViewCell.h │ │ ├── CJActionSheetView.h │ │ ├── CJAlertBottomButtonsFactory.h │ │ ├── CJAlertBottomButtonsModel.h │ │ ├── CJAlertButtonFactory.h │ │ ├── CJAlertComponentFactory.h │ │ ├── CJBaseAlertView.h │ │ ├── CJBaseOverlayThemeManager.h │ │ ├── CJBaseOverlayThemeModel.h │ │ ├── CJIndicatorProgressHUDView.h │ │ ├── CJMessageAlertView.h │ │ ├── CJOverlayAlertThemeModel.h │ │ ├── CJOverlayCommonThemeModel.h │ │ ├── CJOverlaySheetThemeModel.h │ │ ├── CJOverlayTextSizeUtil.h │ │ ├── CJOverlayView-umbrella.h │ │ ├── CJOverlayView.modulemap │ │ ├── CJScreenBottomTableViewCell.h │ │ ├── CJTextInputAlertView.h │ │ ├── CQBaseTwoEventSheetView.h │ │ ├── CQDangerConfirmSheetView.h │ │ ├── CQHorizontalAlertView.h │ │ ├── CQImageSheetView.h │ │ ├── CQTwoEventSheetView.h │ │ └── UIButton+CJAlertProperty.h │ │ ├── CJPopupCreater │ │ ├── CJBasePopupBlankView.h │ │ ├── CJBottomBlankView+ShowHide.h │ │ ├── CJBottomBlankView.h │ │ ├── CJBottomBlankViewShowHelper.h │ │ ├── CJBottomBlankViewShowHelperProtocal.h │ │ ├── CJCenterBlankView+ShowHide.h │ │ ├── CJCenterBlankView.h │ │ ├── CJCenterBlankViewShowHelper.h │ │ ├── CJCenterBlankViewShowHelperProtocal.h │ │ ├── CQEffectAndCornerHelper.h │ │ ├── CQEffectEnum.h │ │ ├── CQEffectViewFactory.h │ │ ├── PopupViewFrameCJHelper.h │ │ └── UIView+CJPopupSuperviewSubview.h │ │ ├── CQActionCollectionView │ │ ├── CJActionCollectionViewDataSource.h │ │ ├── CQActionImageCellContentContainerView.h │ │ ├── CQActionImageCollectionView.h │ │ ├── CQActionImageCollectionViewCell.h │ │ └── CQBaseAddDeleteContainerView.h │ │ ├── CQDemoKit │ │ ├── CJDealTextModel.h │ │ ├── CJDealTextModelFactory.h │ │ ├── CJUIKitAlertUtil.h │ │ ├── CJUIKitBaseBigTextViewController.h │ │ ├── CJUIKitBaseCollectionHomeViewController.h │ │ ├── CJUIKitBaseHomeViewController.h │ │ ├── CJUIKitBaseScrollViewController.h │ │ ├── CJUIKitBaseTabBarViewController.h │ │ ├── CJUIKitBaseTextViewController.h │ │ ├── CJUIKitBaseViewController.h │ │ ├── CJUIKitCollectionViewCell.h │ │ ├── CJUIKitToastUtil.h │ │ ├── CJValidateStringBigTableViewCell.h │ │ ├── CJValidateStringTableViewCell.h │ │ ├── CQDMModuleModel.h │ │ ├── CQDMSectionDataModel+CJDealTextModel.h │ │ ├── CQDMSectionDataModel.h │ │ ├── CQDMTabBarModel.h │ │ ├── CQTSBorderStateButton.h │ │ ├── CQTSButtonFactory.h │ │ ├── CQTSContainerViewFactory.h │ │ ├── CQTSImageLoader.h │ │ ├── CQTSSuspendButtonRootViewController.h │ │ ├── CQTSSuspendWindow.h │ │ ├── CQTSSuspendWindowFactory.h │ │ ├── CQTSSwitchViewFactory.h │ │ ├── UIButton+CQTSMoreProperty.h │ │ ├── UIImage+CQDemoKit.h │ │ ├── UIImageView+CQTSBaseUtil.h │ │ └── UISwitch+CQTSMoreProperty.h │ │ ├── CQImageAddDeleteListKit │ │ ├── CJChooseFileActionSheetUtil.h │ │ ├── CJImageAddDeletePickCollectionView.h │ │ ├── CJImageAddDeletePickUploadCollectionView.h │ │ ├── CJImageAddUploadProgressView.h │ │ ├── CJImageUploadFileModelsOwner.h │ │ ├── CJMediaBrowserUtil.h │ │ ├── CJUploadImagePickerUtil.h │ │ └── CJVideoUploadFileModelsOwner.h │ │ ├── CQImageKit │ │ ├── CQAvatarImageView.h │ │ ├── CQBaseImageView.h │ │ ├── CQImageBusinessEnum.h │ │ ├── CQImageEnum.h │ │ ├── CQImageLoader.h │ │ ├── CQImageLoaderCut.h │ │ ├── CQImageUploadSimulateUtil.h │ │ ├── CQLoadingImageView.h │ │ ├── CQPlaceholderImageSource.h │ │ ├── CQStatusImageModel.h │ │ ├── CQStatusImageView.h │ │ ├── UIImage+CQImageKit.h │ │ ├── UIImageCQCutHelper.h │ │ ├── UIImageView+CQAvatarAndPhotoList.h │ │ ├── UIImageView+CQBaseUtil.h │ │ ├── UIImageView+CQUtil.h │ │ └── UIView+CQOverlayImageBanned.h │ │ ├── CQImagePickerKit │ │ ├── CQImagePickerControllerFactory.h │ │ ├── CQImagePickerControllerUtil.h │ │ └── CQImagePickerPermissionManager.h │ │ ├── CQNetworkPublic │ │ ├── CJRequestCacheSettingModel.h │ │ ├── CJRequestNetworkEnum.h │ │ ├── CJRequestSettingEnum.h │ │ ├── CJRequestSettingModel.h │ │ ├── CJRequestURLHelper.h │ │ └── CJResponseModel.h │ │ ├── CQOverlayKit │ │ ├── CJBaseOverlayThemeModel+Text.h │ │ ├── CQActionSheetUtil.h │ │ ├── CQActionSheetUtil2.h │ │ ├── CQActionSheetUtil3.h │ │ ├── CQAlertManager.h │ │ ├── CQAlertUtil.h │ │ ├── CQHUDThemeModel.h │ │ ├── CQJumpMapUtil.h │ │ ├── CQOverlayTextModel.h │ │ ├── CQOverlayTheme.h │ │ ├── CQPermissionAlertUtil+Location.h │ │ ├── CQPermissionAlertUtil.h │ │ ├── CQToastThemeModel.h │ │ ├── UIAlertUtil.h │ │ ├── UIView+CQHUDRotationAnimation.h │ │ └── UIView+CQPopupOverlayAction.h │ │ ├── CQPopupCreater_Base │ │ ├── CQBottomBlankAndPanlinePopupEnum.h │ │ ├── CQBottomCustomWithPanlineView.h │ │ ├── CQBottomPanlineBlankView.h │ │ ├── CQBottomPanlineBlankViewFactory.h │ │ ├── CQCenterBlankAndNormalPopupEnum.h │ │ ├── CQCenterBlankView.h │ │ ├── CQPanLineView.h │ │ ├── UIView+CQPopupBottomPanlineAction.h │ │ ├── UIView+CQPopupBottomSelfAction.h │ │ └── UIView+CQPopupCenterSelfAction.h │ │ ├── DZNEmptyDataSet │ │ └── UIScrollView+EmptyDataSet.h │ │ ├── IjinbuNetwork │ │ ├── CJJSONResponseSerializer.h │ │ ├── IjinbuHTTPSessionManager.h │ │ ├── IjinbuNetworkClient+UploadFile.h │ │ ├── IjinbuNetworkClient.h │ │ ├── IjinbuResponseModel.h │ │ ├── IjinbuSession.h │ │ ├── IjinbuUploadItemResult.h │ │ └── IjinbuUser.h │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJFoundation.h │ │ ├── MJProperty.h │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyType.h │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJProperty.h │ │ └── NSString+MJExtension.h │ │ ├── MJPopupViewController │ │ ├── MJPopupBackgroundView.h │ │ └── UIViewController+MJPopupViewController.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry-umbrella.h │ │ ├── Masonry.h │ │ ├── Masonry.modulemap │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ ├── NJKWebViewProgress │ │ ├── NJKWebViewProgress.h │ │ └── NJKWebViewProgressView.h │ │ ├── OpenUDID │ │ └── OpenUDID.h │ │ ├── SDCycleScrollView │ │ ├── SDCollectionViewCell.h │ │ ├── SDCycleScrollView.h │ │ ├── TAAbstractDotView.h │ │ ├── TAAnimatedDotView.h │ │ ├── TADotView.h │ │ ├── TAPageControl.h │ │ └── UIView+SDExtension.h │ │ ├── SDWebImage │ │ ├── NSButton+WebCache.h │ │ ├── NSData+ImageContentType.h │ │ ├── NSImage+Compatibility.h │ │ ├── SDAnimatedImage.h │ │ ├── SDAnimatedImagePlayer.h │ │ ├── SDAnimatedImageRep.h │ │ ├── SDAnimatedImageView+WebCache.h │ │ ├── SDAnimatedImageView.h │ │ ├── SDCallbackQueue.h │ │ ├── SDDiskCache.h │ │ ├── SDGraphicsImageRenderer.h │ │ ├── SDImageAPNGCoder.h │ │ ├── SDImageAWebPCoder.h │ │ ├── SDImageCache.h │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheDefine.h │ │ ├── SDImageCachesManager.h │ │ ├── SDImageCoder.h │ │ ├── SDImageCoderHelper.h │ │ ├── SDImageCodersManager.h │ │ ├── SDImageFrame.h │ │ ├── SDImageGIFCoder.h │ │ ├── SDImageGraphics.h │ │ ├── SDImageHEICCoder.h │ │ ├── SDImageIOAnimatedCoder.h │ │ ├── SDImageIOCoder.h │ │ ├── SDImageLoader.h │ │ ├── SDImageLoadersManager.h │ │ ├── SDImageTransformer.h │ │ ├── SDMemoryCache.h │ │ ├── SDWebImage.h │ │ ├── SDWebImageCacheKeyFilter.h │ │ ├── SDWebImageCacheSerializer.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDefine.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderConfig.h │ │ ├── SDWebImageDownloaderDecryptor.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ ├── SDWebImageError.h │ │ ├── SDWebImageIndicator.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImageOptionsProcessor.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImageTransition.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+ExtendedCacheData.h │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MemoryCacheCost.h │ │ ├── UIImage+Metadata.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+Transform.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ ├── UIView+WebCache.h │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheState.h │ │ ├── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVProgressAnimatedView.h │ │ ├── SVProgressHUD.h │ │ └── SVRadialGradientLayer.h │ │ ├── SnapKit │ │ ├── SnapKit-umbrella.h │ │ └── SnapKit.modulemap │ │ └── YYCache │ │ ├── YYCache.h │ │ ├── YYDiskCache.h │ │ ├── YYKVStorage.h │ │ └── YYMemoryCache.h │ ├── IjinbuNetwork │ ├── IjinbuNetwork │ │ ├── CJJSONResponseSerializer │ │ │ ├── CJJSONResponseSerializer.h │ │ │ └── CJJSONResponseSerializer.m │ │ ├── IjinbuHTTPSessionManager.h │ │ ├── IjinbuHTTPSessionManager.m │ │ ├── IjinbuNetworkClient+UploadFile.h │ │ ├── IjinbuNetworkClient+UploadFile.m │ │ ├── IjinbuNetworkClient.h │ │ ├── IjinbuNetworkClient.m │ │ ├── IjinbuUploadModels │ │ │ ├── IjinbuUploadItemResult.h │ │ │ └── IjinbuUploadItemResult.m │ │ ├── Models │ │ │ ├── IjinbuSession.h │ │ │ ├── IjinbuSession.m │ │ │ ├── IjinbuUser.h │ │ │ └── IjinbuUser.m │ │ └── ResponseModels │ │ │ ├── IjinbuResponseModel.h │ │ │ └── IjinbuResponseModel.m │ └── README.md │ ├── Local Podspecs │ ├── CJBaseHelper.podspec.json │ ├── CJBaseUIKit.podspec.json │ ├── CJBaseUtil.podspec.json │ ├── CJCollectionViewFlowLayout.podspec.json │ ├── CJComplexUIKit.podspec.json │ ├── CJFoundation.podspec.json │ ├── CJMenuListKit.podspec.json │ └── CQExtralItemCollectionViewDataSource.podspec.json │ ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown │ ├── MJExtension │ ├── LICENSE │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJExtensionConst.m │ │ ├── MJFoundation.h │ │ ├── MJFoundation.m │ │ ├── MJProperty.h │ │ ├── MJProperty.m │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyKey.m │ │ ├── MJPropertyType.h │ │ ├── MJPropertyType.m │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJClass.m │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJCoding.m │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJKeyValue.m │ │ ├── NSObject+MJProperty.h │ │ ├── NSObject+MJProperty.m │ │ ├── NSString+MJExtension.h │ │ └── NSString+MJExtension.m │ └── README.md │ ├── MJPopupViewController │ ├── LICENSE.txt │ ├── README.md │ └── Source │ │ ├── MJPopupBackgroundView.h │ │ ├── MJPopupBackgroundView.m │ │ ├── UIViewController+MJPopupViewController.h │ │ └── UIViewController+MJPopupViewController.m │ ├── Manifest.lock │ ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md │ ├── NJKWebViewProgress │ ├── LICENSE │ ├── NJKWebViewProgress │ │ ├── NJKWebViewProgress.h │ │ ├── NJKWebViewProgress.m │ │ ├── NJKWebViewProgressView.h │ │ └── NJKWebViewProgressView.m │ └── README.md │ ├── OpenUDID │ ├── OpenUDID.h │ ├── OpenUDID.m │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── SDCycleScrollView │ ├── LICENSE │ ├── README.md │ └── SDCycleScrollView │ │ └── Lib │ │ └── SDCycleScrollView │ │ ├── PageControl │ │ ├── TAAbstractDotView.h │ │ ├── TAAbstractDotView.m │ │ ├── TAAnimatedDotView.h │ │ ├── TAAnimatedDotView.m │ │ ├── TADotView.h │ │ ├── TADotView.m │ │ ├── TAPageControl.h │ │ └── TAPageControl.m │ │ ├── SDCollectionViewCell.h │ │ ├── SDCollectionViewCell.m │ │ ├── SDCycleScrollView.h │ │ ├── SDCycleScrollView.m │ │ ├── UIView+SDExtension.h │ │ └── UIView+SDExtension.m │ ├── SDWebImage │ ├── LICENSE │ ├── README.md │ ├── SDWebImage │ │ ├── Core │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSButton+WebCache.m │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSData+ImageContentType.m │ │ │ ├── NSImage+Compatibility.h │ │ │ ├── NSImage+Compatibility.m │ │ │ ├── SDAnimatedImage.h │ │ │ ├── SDAnimatedImage.m │ │ │ ├── SDAnimatedImagePlayer.h │ │ │ ├── SDAnimatedImagePlayer.m │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDAnimatedImageRep.m │ │ │ ├── SDAnimatedImageView+WebCache.h │ │ │ ├── SDAnimatedImageView+WebCache.m │ │ │ ├── SDAnimatedImageView.h │ │ │ ├── SDAnimatedImageView.m │ │ │ ├── SDCallbackQueue.h │ │ │ ├── SDCallbackQueue.m │ │ │ ├── SDDiskCache.h │ │ │ ├── SDDiskCache.m │ │ │ ├── SDGraphicsImageRenderer.h │ │ │ ├── SDGraphicsImageRenderer.m │ │ │ ├── SDImageAPNGCoder.h │ │ │ ├── SDImageAPNGCoder.m │ │ │ ├── SDImageAWebPCoder.h │ │ │ ├── SDImageAWebPCoder.m │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCache.m │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDImageCacheConfig.m │ │ │ ├── SDImageCacheDefine.h │ │ │ ├── SDImageCacheDefine.m │ │ │ ├── SDImageCachesManager.h │ │ │ ├── SDImageCachesManager.m │ │ │ ├── SDImageCoder.h │ │ │ ├── SDImageCoder.m │ │ │ ├── SDImageCoderHelper.h │ │ │ ├── SDImageCoderHelper.m │ │ │ ├── SDImageCodersManager.h │ │ │ ├── SDImageCodersManager.m │ │ │ ├── SDImageFrame.h │ │ │ ├── SDImageFrame.m │ │ │ ├── SDImageGIFCoder.h │ │ │ ├── SDImageGIFCoder.m │ │ │ ├── SDImageGraphics.h │ │ │ ├── SDImageGraphics.m │ │ │ ├── SDImageHEICCoder.h │ │ │ ├── SDImageHEICCoder.m │ │ │ ├── SDImageIOAnimatedCoder.h │ │ │ ├── SDImageIOAnimatedCoder.m │ │ │ ├── SDImageIOCoder.h │ │ │ ├── SDImageIOCoder.m │ │ │ ├── SDImageLoader.h │ │ │ ├── SDImageLoader.m │ │ │ ├── SDImageLoadersManager.h │ │ │ ├── SDImageLoadersManager.m │ │ │ ├── SDImageTransformer.h │ │ │ ├── SDImageTransformer.m │ │ │ ├── SDMemoryCache.h │ │ │ ├── SDMemoryCache.m │ │ │ ├── SDWebImageCacheKeyFilter.h │ │ │ ├── SDWebImageCacheKeyFilter.m │ │ │ ├── SDWebImageCacheSerializer.h │ │ │ ├── SDWebImageCacheSerializer.m │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageCompat.m │ │ │ ├── SDWebImageDefine.h │ │ │ ├── SDWebImageDefine.m │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloader.m │ │ │ ├── SDWebImageDownloaderConfig.h │ │ │ ├── SDWebImageDownloaderConfig.m │ │ │ ├── SDWebImageDownloaderDecryptor.h │ │ │ ├── SDWebImageDownloaderDecryptor.m │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageDownloaderOperation.m │ │ │ ├── SDWebImageDownloaderRequestModifier.h │ │ │ ├── SDWebImageDownloaderRequestModifier.m │ │ │ ├── SDWebImageDownloaderResponseModifier.h │ │ │ ├── SDWebImageDownloaderResponseModifier.m │ │ │ ├── SDWebImageError.h │ │ │ ├── SDWebImageError.m │ │ │ ├── SDWebImageIndicator.h │ │ │ ├── SDWebImageIndicator.m │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageManager.m │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImageOperation.m │ │ │ ├── SDWebImageOptionsProcessor.h │ │ │ ├── SDWebImageOptionsProcessor.m │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImagePrefetcher.m │ │ │ ├── SDWebImageTransition.h │ │ │ ├── SDWebImageTransition.m │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIButton+WebCache.m │ │ │ ├── UIImage+ExtendedCacheData.h │ │ │ ├── UIImage+ExtendedCacheData.m │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+ForceDecode.m │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+GIF.m │ │ │ ├── UIImage+MemoryCacheCost.h │ │ │ ├── UIImage+MemoryCacheCost.m │ │ │ ├── UIImage+Metadata.h │ │ │ ├── UIImage+Metadata.m │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImage+MultiFormat.m │ │ │ ├── UIImage+Transform.h │ │ │ ├── UIImage+Transform.m │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIImageView+WebCache.m │ │ │ ├── UIView+WebCache.h │ │ │ ├── UIView+WebCache.m │ │ │ ├── UIView+WebCacheOperation.h │ │ │ ├── UIView+WebCacheOperation.m │ │ │ ├── UIView+WebCacheState.h │ │ │ └── UIView+WebCacheState.m │ │ └── Private │ │ │ ├── NSBezierPath+SDRoundedCorners.h │ │ │ ├── NSBezierPath+SDRoundedCorners.m │ │ │ ├── SDAssociatedObject.h │ │ │ ├── SDAssociatedObject.m │ │ │ ├── SDAsyncBlockOperation.h │ │ │ ├── SDAsyncBlockOperation.m │ │ │ ├── SDDeviceHelper.h │ │ │ ├── SDDeviceHelper.m │ │ │ ├── SDDisplayLink.h │ │ │ ├── SDDisplayLink.m │ │ │ ├── SDFileAttributeHelper.h │ │ │ ├── SDFileAttributeHelper.m │ │ │ ├── SDImageAssetManager.h │ │ │ ├── SDImageAssetManager.m │ │ │ ├── SDImageCachesManagerOperation.h │ │ │ ├── SDImageCachesManagerOperation.m │ │ │ ├── SDImageFramePool.h │ │ │ ├── SDImageFramePool.m │ │ │ ├── SDImageIOAnimatedCoderInternal.h │ │ │ ├── SDInternalMacros.h │ │ │ ├── SDInternalMacros.m │ │ │ ├── SDWeakProxy.h │ │ │ ├── SDWeakProxy.m │ │ │ ├── SDWebImageTransitionInternal.h │ │ │ ├── SDmetamacros.h │ │ │ ├── UIColor+SDHexString.h │ │ │ └── UIColor+SDHexString.m │ └── WebImage │ │ └── SDWebImage.h │ ├── SVProgressHUD │ ├── LICENSE │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressAnimatedView.h │ │ ├── SVProgressAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ ├── SVProgressHUD.m │ │ ├── SVRadialGradientLayer.h │ │ └── SVRadialGradientLayer.m │ ├── SnapKit │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintInsetTarget.swift │ │ ├── ConstraintInsets.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintLayoutGuide+Extensions.swift │ │ ├── ConstraintLayoutGuide.swift │ │ ├── ConstraintLayoutGuideDSL.swift │ │ ├── ConstraintLayoutSupport.swift │ │ ├── ConstraintLayoutSupportDSL.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintMakerEditable.swift │ │ ├── ConstraintMakerExtendable.swift │ │ ├── ConstraintMakerFinalizable.swift │ │ ├── ConstraintMakerPriortizable.swift │ │ ├── ConstraintMakerRelatable.swift │ │ ├── ConstraintMultiplierTarget.swift │ │ ├── ConstraintOffsetTarget.swift │ │ ├── ConstraintPriority.swift │ │ ├── ConstraintPriorityTarget.swift │ │ ├── ConstraintRelatableTarget.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintView+Extensions.swift │ │ ├── ConstraintView.swift │ │ ├── ConstraintViewDSL.swift │ │ ├── Debugging.swift │ │ ├── LayoutConstraint.swift │ │ ├── LayoutConstraintItem.swift │ │ ├── Typealiases.swift │ │ └── UILayoutSupport+Extensions.swift │ ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ ├── AFNetworking-umbrella.h │ │ ├── AFNetworking.debug.xcconfig │ │ ├── AFNetworking.modulemap │ │ └── AFNetworking.release.xcconfig │ ├── CJBaseEffectKit │ │ ├── CJBaseEffectKit-dummy.m │ │ ├── CJBaseEffectKit-prefix.pch │ │ ├── CJBaseEffectKit-umbrella.h │ │ ├── CJBaseEffectKit.debug.xcconfig │ │ ├── CJBaseEffectKit.modulemap │ │ └── CJBaseEffectKit.release.xcconfig │ ├── CJBaseHelper │ │ ├── CJBaseHelper-dummy.m │ │ ├── CJBaseHelper-prefix.pch │ │ ├── CJBaseHelper-umbrella.h │ │ ├── CJBaseHelper.debug.xcconfig │ │ ├── CJBaseHelper.modulemap │ │ └── CJBaseHelper.release.xcconfig │ ├── CJBaseUIKit │ │ ├── CJBaseUIKit-dummy.m │ │ ├── CJBaseUIKit-prefix.pch │ │ ├── CJBaseUIKit-umbrella.h │ │ ├── CJBaseUIKit.debug.xcconfig │ │ ├── CJBaseUIKit.modulemap │ │ └── CJBaseUIKit.release.xcconfig │ ├── CJCollectionViewLayout │ │ ├── CJCollectionViewLayout-dummy.m │ │ ├── CJCollectionViewLayout-prefix.pch │ │ ├── CJCollectionViewLayout-umbrella.h │ │ ├── CJCollectionViewLayout.debug.xcconfig │ │ ├── CJCollectionViewLayout.modulemap │ │ └── CJCollectionViewLayout.release.xcconfig │ ├── CJComplexUIKit │ │ ├── CJComplexUIKit-dummy.m │ │ ├── CJComplexUIKit-prefix.pch │ │ ├── CJComplexUIKit-umbrella.h │ │ ├── CJComplexUIKit.debug.xcconfig │ │ ├── CJComplexUIKit.modulemap │ │ └── CJComplexUIKit.release.xcconfig │ ├── CJContainer │ │ ├── CJContainer-dummy.m │ │ ├── CJContainer-prefix.pch │ │ ├── CJContainer-umbrella.h │ │ ├── CJContainer.debug.xcconfig │ │ ├── CJContainer.modulemap │ │ └── CJContainer.release.xcconfig │ ├── CJFile │ │ ├── CJFile-dummy.m │ │ ├── CJFile-prefix.pch │ │ ├── CJFile-umbrella.h │ │ ├── CJFile.debug.xcconfig │ │ ├── CJFile.modulemap │ │ └── CJFile.release.xcconfig │ ├── CJFoundation │ │ ├── CJFoundation-dummy.m │ │ ├── CJFoundation-prefix.pch │ │ ├── CJFoundation-umbrella.h │ │ ├── CJFoundation.debug.xcconfig │ │ ├── CJFoundation.modulemap │ │ └── CJFoundation.release.xcconfig │ ├── CJImagePickerKit │ │ ├── CJImagePickerKit-dummy.m │ │ ├── CJImagePickerKit-prefix.pch │ │ ├── CJImagePickerKit-umbrella.h │ │ ├── CJImagePickerKit.debug.xcconfig │ │ ├── CJImagePickerKit.modulemap │ │ ├── CJImagePickerKit.release.xcconfig │ │ └── ResourceBundle-CJImagePickerKit-CJImagePickerKit-Info.plist │ ├── CJNetwork │ │ ├── CJNetwork-dummy.m │ │ ├── CJNetwork-prefix.pch │ │ ├── CJNetwork-umbrella.h │ │ ├── CJNetwork.debug.xcconfig │ │ ├── CJNetwork.modulemap │ │ └── CJNetwork.release.xcconfig │ ├── CJNetworkFileModel │ │ ├── CJNetworkFileModel-dummy.m │ │ ├── CJNetworkFileModel-prefix.pch │ │ ├── CJNetworkFileModel-umbrella.h │ │ ├── CJNetworkFileModel.debug.xcconfig │ │ ├── CJNetworkFileModel.modulemap │ │ └── CJNetworkFileModel.release.xcconfig │ ├── CJOverlayView │ │ ├── CJOverlayView-dummy.m │ │ ├── CJOverlayView-prefix.pch │ │ ├── CJOverlayView-umbrella.h │ │ ├── CJOverlayView.debug.xcconfig │ │ ├── CJOverlayView.modulemap │ │ └── CJOverlayView.release.xcconfig │ ├── CJPopupCreater │ │ ├── CJPopupCreater-dummy.m │ │ ├── CJPopupCreater-prefix.pch │ │ ├── CJPopupCreater-umbrella.h │ │ ├── CJPopupCreater.debug.xcconfig │ │ ├── CJPopupCreater.modulemap │ │ └── CJPopupCreater.release.xcconfig │ ├── CQActionCollectionView │ │ ├── CQActionCollectionView-dummy.m │ │ ├── CQActionCollectionView-prefix.pch │ │ ├── CQActionCollectionView-umbrella.h │ │ ├── CQActionCollectionView.debug.xcconfig │ │ ├── CQActionCollectionView.modulemap │ │ ├── CQActionCollectionView.release.xcconfig │ │ └── ResourceBundle-CQActionCollectionView_ActionImageBundle-CQActionCollectionView-Info.plist │ ├── CQDemoKit │ │ ├── CQDemoKit-dummy.m │ │ ├── CQDemoKit-prefix.pch │ │ ├── CQDemoKit-umbrella.h │ │ ├── CQDemoKit.debug.xcconfig │ │ ├── CQDemoKit.modulemap │ │ └── CQDemoKit.release.xcconfig │ ├── CQImageAddDeleteListKit │ │ ├── CQImageAddDeleteListKit-dummy.m │ │ ├── CQImageAddDeleteListKit-prefix.pch │ │ ├── CQImageAddDeleteListKit-umbrella.h │ │ ├── CQImageAddDeleteListKit.debug.xcconfig │ │ ├── CQImageAddDeleteListKit.modulemap │ │ ├── CQImageAddDeleteListKit.release.xcconfig │ │ ├── ResourceBundle-CQImageAddDeleteListKit_AddDeleteBundle-CQImageAddDeleteListKit-Info.plist │ │ └── ResourceBundle-CQImageChooseViewBundle-CQImageAddDeleteListKit-Info.plist │ ├── CQImageKit │ │ ├── CQImageKit-dummy.m │ │ ├── CQImageKit-prefix.pch │ │ ├── CQImageKit-umbrella.h │ │ ├── CQImageKit.debug.xcconfig │ │ ├── CQImageKit.modulemap │ │ ├── CQImageKit.release.xcconfig │ │ └── ResourceBundle-CQImageKit-CQImageKit-Info.plist │ ├── CQImagePickerKit │ │ ├── CQImagePickerKit-dummy.m │ │ ├── CQImagePickerKit-prefix.pch │ │ ├── CQImagePickerKit-umbrella.h │ │ ├── CQImagePickerKit.debug.xcconfig │ │ ├── CQImagePickerKit.modulemap │ │ └── CQImagePickerKit.release.xcconfig │ ├── CQNetworkPublic │ │ ├── CQNetworkPublic-dummy.m │ │ ├── CQNetworkPublic-prefix.pch │ │ ├── CQNetworkPublic-umbrella.h │ │ ├── CQNetworkPublic.debug.xcconfig │ │ ├── CQNetworkPublic.modulemap │ │ └── CQNetworkPublic.release.xcconfig │ ├── CQOverlayKit │ │ ├── CQOverlayKit-dummy.m │ │ ├── CQOverlayKit-prefix.pch │ │ ├── CQOverlayKit-umbrella.h │ │ ├── CQOverlayKit.debug.xcconfig │ │ ├── CQOverlayKit.modulemap │ │ ├── CQOverlayKit.release.xcconfig │ │ ├── ResourceBundle-CQActionSheet-CQOverlayKit-Info.plist │ │ ├── ResourceBundle-CQAlert-CQOverlayKit-Info.plist │ │ └── ResourceBundle-CQHUD-CQOverlayKit-Info.plist │ ├── CQPopupCreater_Base │ │ ├── CQPopupCreater_Base-dummy.m │ │ ├── CQPopupCreater_Base-prefix.pch │ │ ├── CQPopupCreater_Base-umbrella.h │ │ ├── CQPopupCreater_Base.debug.xcconfig │ │ ├── CQPopupCreater_Base.modulemap │ │ └── CQPopupCreater_Base.release.xcconfig │ ├── DZNEmptyDataSet │ │ ├── DZNEmptyDataSet-dummy.m │ │ ├── DZNEmptyDataSet-prefix.pch │ │ ├── DZNEmptyDataSet-umbrella.h │ │ ├── DZNEmptyDataSet.debug.xcconfig │ │ ├── DZNEmptyDataSet.modulemap │ │ └── DZNEmptyDataSet.release.xcconfig │ ├── IjinbuNetwork │ │ ├── IjinbuNetwork-dummy.m │ │ ├── IjinbuNetwork-prefix.pch │ │ ├── IjinbuNetwork-umbrella.h │ │ ├── IjinbuNetwork.debug.xcconfig │ │ ├── IjinbuNetwork.modulemap │ │ └── IjinbuNetwork.release.xcconfig │ ├── MBProgressHUD │ │ ├── MBProgressHUD-dummy.m │ │ ├── MBProgressHUD-prefix.pch │ │ ├── MBProgressHUD-umbrella.h │ │ ├── MBProgressHUD.debug.xcconfig │ │ ├── MBProgressHUD.modulemap │ │ └── MBProgressHUD.release.xcconfig │ ├── MJExtension │ │ ├── MJExtension-dummy.m │ │ ├── MJExtension-prefix.pch │ │ ├── MJExtension-umbrella.h │ │ ├── MJExtension.debug.xcconfig │ │ ├── MJExtension.modulemap │ │ └── MJExtension.release.xcconfig │ ├── MJPopupViewController │ │ ├── MJPopupViewController-dummy.m │ │ ├── MJPopupViewController-prefix.pch │ │ ├── MJPopupViewController-umbrella.h │ │ ├── MJPopupViewController.debug.xcconfig │ │ ├── MJPopupViewController.modulemap │ │ └── MJPopupViewController.release.xcconfig │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ ├── Masonry-umbrella.h │ │ ├── Masonry.debug.xcconfig │ │ ├── Masonry.modulemap │ │ └── Masonry.release.xcconfig │ ├── NJKWebViewProgress │ │ ├── NJKWebViewProgress-dummy.m │ │ ├── NJKWebViewProgress-prefix.pch │ │ ├── NJKWebViewProgress-umbrella.h │ │ ├── NJKWebViewProgress.debug.xcconfig │ │ ├── NJKWebViewProgress.modulemap │ │ └── NJKWebViewProgress.release.xcconfig │ ├── OpenUDID │ │ ├── OpenUDID-dummy.m │ │ ├── OpenUDID-prefix.pch │ │ ├── OpenUDID-umbrella.h │ │ ├── OpenUDID.debug.xcconfig │ │ ├── OpenUDID.modulemap │ │ └── OpenUDID.release.xcconfig │ ├── Pods-CJComplexUIKitDemo │ │ ├── Pods-CJComplexUIKitDemo-acknowledgements.markdown │ │ ├── Pods-CJComplexUIKitDemo-acknowledgements.plist │ │ ├── Pods-CJComplexUIKitDemo-dummy.m │ │ ├── Pods-CJComplexUIKitDemo-resources.sh │ │ ├── Pods-CJComplexUIKitDemo-umbrella.h │ │ ├── Pods-CJComplexUIKitDemo.debug.xcconfig │ │ ├── Pods-CJComplexUIKitDemo.modulemap │ │ └── Pods-CJComplexUIKitDemo.release.xcconfig │ ├── Pods-CJComplexUIKitDemoTests │ │ ├── Pods-CJComplexUIKitDemoTests-acknowledgements.markdown │ │ ├── Pods-CJComplexUIKitDemoTests-acknowledgements.plist │ │ ├── Pods-CJComplexUIKitDemoTests-dummy.m │ │ ├── Pods-CJComplexUIKitDemoTests.debug.xcconfig │ │ └── Pods-CJComplexUIKitDemoTests.release.xcconfig │ ├── SDCycleScrollView │ │ ├── SDCycleScrollView-dummy.m │ │ ├── SDCycleScrollView-prefix.pch │ │ ├── SDCycleScrollView-umbrella.h │ │ ├── SDCycleScrollView.debug.xcconfig │ │ ├── SDCycleScrollView.modulemap │ │ └── SDCycleScrollView.release.xcconfig │ ├── SDWebImage │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.debug.xcconfig │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.release.xcconfig │ ├── SVProgressHUD │ │ ├── SVProgressHUD-dummy.m │ │ ├── SVProgressHUD-prefix.pch │ │ ├── SVProgressHUD-umbrella.h │ │ ├── SVProgressHUD.debug.xcconfig │ │ ├── SVProgressHUD.modulemap │ │ └── SVProgressHUD.release.xcconfig │ ├── SnapKit │ │ ├── SnapKit-dummy.m │ │ ├── SnapKit-prefix.pch │ │ ├── SnapKit-umbrella.h │ │ ├── SnapKit.debug.xcconfig │ │ ├── SnapKit.modulemap │ │ └── SnapKit.release.xcconfig │ └── YYCache │ │ ├── YYCache-dummy.m │ │ ├── YYCache-prefix.pch │ │ ├── YYCache-umbrella.h │ │ ├── YYCache.debug.xcconfig │ │ ├── YYCache.modulemap │ │ └── YYCache.release.xcconfig │ └── YYCache │ ├── LICENSE │ ├── README.md │ └── YYCache │ ├── YYCache.h │ ├── YYCache.m │ ├── YYDiskCache.h │ ├── YYDiskCache.m │ ├── YYKVStorage.h │ ├── YYKVStorage.m │ ├── YYMemoryCache.h │ └── YYMemoryCache.m ├── CJFoundation.podspec ├── CJFoundation ├── CJConsoleLog │ ├── NSArray+CJConsoleLog.h │ ├── NSArray+CJConsoleLog.m │ ├── NSDictionary+CJConsoleLog.h │ └── NSDictionary+CJConsoleLog.m ├── CJFoundation.h ├── NSDictionary │ ├── NSDictionary+CJConvert.h │ └── NSDictionary+CJConvert.m ├── NSJSONSerialization │ ├── NSJSONSerialization+CJCategory.h │ └── NSJSONSerialization+CJCategory.m ├── NSObject │ ├── NSObject+CJSharedInstance.h │ └── NSObject+CJSharedInstance.m ├── NSString │ ├── NSString+CJAttributedString.h │ ├── NSString+CJAttributedString.m │ ├── NSString+CJCategory.h │ ├── NSString+CJCut.h │ ├── NSString+CJCut.m │ ├── NSString+CJEncoding.h │ ├── NSString+CJEncoding.m │ ├── NSString+CJEncryption.h │ ├── NSString+CJEncryption.m │ ├── NSString+CJTextLength.h │ ├── NSString+CJTextLength.m │ ├── NSString+CJTextSize.h │ ├── NSString+CJTextSize.m │ ├── NSString+CJTextSizeInView.h │ ├── NSString+CJTextSizeInView.m │ ├── NSString+CJValidate.h │ └── NSString+CJValidate.m └── README.md ├── CJHook.podspec ├── CJHook ├── CJFileUploadPanel │ ├── CJFileUploadPanel.h │ └── CJFileUploadPanel.m ├── UIButton │ ├── UIButton+CJFixMultiClick.h │ └── UIButton+CJFixMultiClick.m └── UIViewController │ ├── UIViewController+CJHookImagePicker.h │ ├── UIViewController+CJHookImagePicker.m │ ├── UIViewController+CJHookPresent.h │ └── UIViewController+CJHookPresent.m ├── CJHookDemo ├── CJHookDemo.xcodeproj │ └── project.pbxproj ├── CJHookDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── CJHookDemo │ ├── AppDelegate+WindowRootViewController.h │ ├── AppDelegate+WindowRootViewController.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── HookCommonUtil │ │ ├── DemoFileUploadPanel.h │ │ └── DemoFileUploadPanel.m │ ├── Info.plist │ ├── Module │ │ ├── 4H5ImgIntercept │ │ │ ├── H5ImgInterceptChooseViewController.h │ │ │ ├── H5ImgInterceptChooseViewController.m │ │ │ ├── H5ImgInterceptPickerViewController.h │ │ │ ├── H5ImgInterceptPickerViewController.m │ │ │ ├── H5ImgInterceptPickerViewController1.h │ │ │ ├── H5ImgInterceptPickerViewController1.m │ │ │ ├── H5ImgPickerIntercept.html │ │ │ ├── 饮品2.jpg │ │ │ └── 饮品3.jpg │ │ ├── HookButtonDemo │ │ │ ├── HookButtonViewController.h │ │ │ └── HookButtonViewController.m │ │ ├── HookCJHelperDemo │ │ │ ├── ChangeMethod │ │ │ │ ├── HookCJHelperChangeViewController.h │ │ │ │ ├── HookCJHelperChangeViewController.m │ │ │ │ ├── TestChangeModel1+TestChange.h │ │ │ │ ├── TestChangeModel1+TestChange.m │ │ │ │ ├── TestChangeModel1.h │ │ │ │ ├── TestChangeModel1.m │ │ │ │ ├── TestChangeModel2.h │ │ │ │ └── TestChangeModel2.m │ │ │ ├── HookCJHelperHomeViewController.h │ │ │ ├── HookCJHelperHomeViewController.m │ │ │ └── SwizzleMethod │ │ │ │ ├── HookCJHelperSwizzleViewController.h │ │ │ │ ├── HookCJHelperSwizzleViewController.m │ │ │ │ ├── TestHookModel1+TestHook.h │ │ │ │ ├── TestHookModel1+TestHook.m │ │ │ │ ├── TestHookModel1.h │ │ │ │ ├── TestHookModel1.m │ │ │ │ ├── TestHookModel2.h │ │ │ │ └── TestHookModel2.m │ │ ├── HookVCHomeViewController.h │ │ └── HookVCHomeViewController.m │ ├── PrefixHeader.pch │ ├── Resources │ │ ├── AppAssets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── iconiPhoneApp_60pt@2x.png │ │ │ │ ├── iconiPhoneApp_60pt@3x.png │ │ │ │ ├── iconiPhoneNotification_20pt@2x.png │ │ │ │ ├── iconiPhoneNotification_20pt@3x.png │ │ │ │ ├── iconiPhoneSpootlight5_29pt@2x.png │ │ │ │ ├── iconiPhoneSpootlight5_29pt@3x.png │ │ │ │ ├── iconiPhoneSpootlight7_40pt@2x.png │ │ │ │ ├── iconiPhoneSpootlight7_40pt@3x.png │ │ │ │ └── iconstore_1024pt.png │ │ │ ├── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── (1242_2688)_414x896pt@3x.png │ │ │ │ ├── (828_1792)_414x896pt@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImageiPhonePortraitiOS789_320x480pt@2x.png │ │ │ │ ├── LaunchImageiPhonePortraitiOS789_320x568pt@2x.png │ │ │ │ ├── LaunchImageiPhonePortraitiOS89_375x667pt@2x.png │ │ │ │ ├── LaunchImageiPhonePortraitiOS89_414x736pt@3x.png │ │ │ │ └── LaunchImageiPhoneXPortraitiOS11_375x812pt@3x.png │ │ ├── AppCommon.xcassets │ │ │ ├── Contents.json │ │ │ ├── nav_back_white_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── qrcode_scan_titlebar_back_nor@2x.png │ │ │ ├── nav_back_white_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── qrcode_scan_titlebar_back_pressed@2x.png │ │ │ └── nav_right_gray_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_arrow@2x.png │ │ │ │ └── message_arrow@3x.png │ │ ├── MainAsset.xcassets │ │ │ ├── Contents.json │ │ │ ├── icons8-calendar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-calendar.png │ │ │ ├── icons8-folder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-folder.png │ │ │ ├── icons8-home.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-home.png │ │ │ ├── icons8-menu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-menu.png │ │ │ └── icons8-settings.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icons8-settings.png │ │ └── bg@2x.jpg │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CJHookDemoTests │ ├── CJHookDemoTests.m │ └── Info.plist ├── CJHookDemoUITests │ ├── CJHookDemoUITests.m │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── AFNetworking │ ├── AFNetworking │ │ ├── AFNetworkReachabilityManager.h │ │ └── AFNetworkReachabilityManager.m │ ├── LICENSE │ └── README.md │ ├── CJFile │ ├── CJFile │ │ ├── CJFileManager │ │ │ ├── CJFileManager+CalculateFileSize.h │ │ │ ├── CJFileManager+CalculateFileSize.m │ │ │ ├── CJFileManager+DeleteCleanFile.h │ │ │ ├── CJFileManager+DeleteCleanFile.m │ │ │ ├── CJFileManager+GetCreatePath.h │ │ │ ├── CJFileManager+GetCreatePath.m │ │ │ ├── CJFileManager+SaveFileData.h │ │ │ ├── CJFileManager+SaveFileData.m │ │ │ ├── CJFileManager.h │ │ │ └── CJFileManager.m │ │ └── CJFileModel │ │ │ ├── CJPathFileModel.h │ │ │ └── CJPathFileModel.m │ ├── LICENSE │ └── README.md │ ├── CJMedia │ ├── CJMedia │ │ ├── CJNormalImagePickerUtil │ │ │ ├── CJNormalImagePickerUtil.h │ │ │ └── CJNormalImagePickerUtil.m │ │ ├── CJPhotoBrowser │ │ │ ├── CJAlumbImageUtil │ │ │ │ ├── CJAlumbImageUtil.h │ │ │ │ └── CJAlumbImageUtil.m │ │ │ ├── CJAlumbViewController │ │ │ │ ├── CJAlumbViewController.h │ │ │ │ ├── CJAlumbViewController.m │ │ │ │ └── Views │ │ │ │ │ ├── CJPhotoGroupTableViewCell.h │ │ │ │ │ └── CJPhotoGroupTableViewCell.m │ │ │ ├── CJImagePicker │ │ │ │ ├── CJImagePickerViewController+UpdateGroupArray.h │ │ │ │ ├── CJImagePickerViewController+UpdateGroupArray.m │ │ │ │ ├── CJImagePickerViewController.h │ │ │ │ ├── CJImagePickerViewController.m │ │ │ │ ├── Models │ │ │ │ │ ├── AlumbImageModel.h │ │ │ │ │ ├── AlumbImageModel.m │ │ │ │ │ ├── AlumbSectionDataModel.h │ │ │ │ │ └── AlumbSectionDataModel.m │ │ │ │ ├── Resources │ │ │ │ │ ├── cjAlbumCheckedNormal@2x.png │ │ │ │ │ └── cjAlbumCheckedSelect@2x.png │ │ │ │ └── Views │ │ │ │ │ ├── CJMultiColumnPhotoTableViewCell.h │ │ │ │ │ ├── CJMultiColumnPhotoTableViewCell.m │ │ │ │ │ ├── CJPhotoGridCell.h │ │ │ │ │ └── CJPhotoGridCell.m │ │ │ └── CJPhotoBrowser │ │ │ │ ├── CJPhotoBrowser.bundle │ │ │ │ ├── error.png │ │ │ │ ├── error@2x.png │ │ │ │ ├── error@3x.png │ │ │ │ ├── info.png │ │ │ │ ├── info@2x.png │ │ │ │ ├── info@3x.png │ │ │ │ ├── success.png │ │ │ │ ├── success@2x.png │ │ │ │ └── success@3x.png │ │ │ │ ├── CJPhotoBrowser.h │ │ │ │ ├── CJPhotoBrowser.m │ │ │ │ ├── MBProgressHUD+CJPhotoBrowser │ │ │ │ ├── MBProgressHUD+CJPhotoBrowser.h │ │ │ │ └── MBProgressHUD+CJPhotoBrowser.m │ │ │ │ ├── Models │ │ │ │ ├── CJPhotoModel.h │ │ │ │ └── CJPhotoModel.m │ │ │ │ └── Views │ │ │ │ ├── CJPhotoLoadingView.h │ │ │ │ ├── CJPhotoLoadingView.m │ │ │ │ ├── CJPhotoProgressView.h │ │ │ │ ├── CJPhotoProgressView.m │ │ │ │ ├── CJPhotoToolbar.h │ │ │ │ ├── CJPhotoToolbar.m │ │ │ │ ├── CJPhotoView.h │ │ │ │ └── CJPhotoView.m │ │ ├── CJUploadImagePickerUtil │ │ │ ├── CJUploadImagePickerUtil.h │ │ │ ├── CJUploadImagePickerUtil.m │ │ │ └── Models │ │ │ │ ├── CJImageUploadFileModelsOwner.h │ │ │ │ ├── CJImageUploadFileModelsOwner.m │ │ │ │ ├── CJVideoUploadFileModelsOwner.h │ │ │ │ └── CJVideoUploadFileModelsOwner.m │ │ ├── CJValidateAuthorizationUtil │ │ │ ├── CJValidateAuthorizationUtil.h │ │ │ └── CJValidateAuthorizationUtil.m │ │ └── MySingleImagePickerController │ │ │ ├── MySingleImagePickerController.h │ │ │ └── MySingleImagePickerController.m │ ├── LICENSE │ └── README.md │ ├── CJNetwork │ ├── CJCacheManager │ │ ├── CJCacheManager.h │ │ ├── CJCacheManager.m │ │ ├── Model │ │ │ ├── CJCacheDataModel.h │ │ │ └── CJCacheDataModel.m │ │ └── ReadWriteDataManager │ │ │ ├── CJDataDiskManager.h │ │ │ ├── CJDataDiskManager.m │ │ │ ├── CJDataMemoryCacheManager.h │ │ │ ├── CJDataMemoryCacheManager.m │ │ │ ├── CJDataMemoryDictionaryManager.h │ │ │ └── CJDataMemoryDictionaryManager.m │ ├── CJNetwork │ │ ├── AFNetworkingBaseComponent │ │ │ ├── AFHTTPSessionManager+CJEncrypt.h │ │ │ ├── AFHTTPSessionManager+CJEncrypt.m │ │ │ └── CJJSONResponseSerializer │ │ │ │ ├── CJJSONResponseSerializer.h │ │ │ │ ├── CJJSONResponseSerializer.m │ │ │ │ ├── NSString+URLEncoding.h │ │ │ │ └── NSString+URLEncoding.m │ │ ├── AFNetworkingCacheComponent │ │ │ ├── AFHTTPSessionManager+CJCacheRequest.h │ │ │ ├── AFHTTPSessionManager+CJCacheRequest.m │ │ │ ├── CJRequestCacheDataUtil.h │ │ │ └── CJRequestCacheDataUtil.m │ │ ├── AFNetworkingUploadComponent │ │ │ ├── AFNetworkingUploadAPI │ │ │ │ ├── AFHTTPSessionManager+CJUploadFile.h │ │ │ │ ├── AFHTTPSessionManager+CJUploadFile.m │ │ │ │ └── CJUploadFileModelsOwner │ │ │ │ │ ├── CJUploadFileModel.h │ │ │ │ │ ├── CJUploadFileModel.m │ │ │ │ │ ├── CJUploadFileModelsOwner.h │ │ │ │ │ ├── CJUploadFileModelsOwner.m │ │ │ │ │ ├── CJUploadMomentInfo.h │ │ │ │ │ ├── CJUploadMomentInfo.m │ │ │ │ │ └── CJUploadMomentState.h │ │ │ └── UIView+AFNetworkingUpload │ │ │ │ ├── CJUploadProgressView.h │ │ │ │ ├── CJUploadProgressView.m │ │ │ │ ├── UIView+AFNetworkingUpload.h │ │ │ │ └── UIView+AFNetworkingUpload.m │ │ ├── CJNetwork.h │ │ ├── CJNetworkBase │ │ │ ├── CJNetworkErrorUtil.h │ │ │ ├── CJNetworkErrorUtil.m │ │ │ ├── CJNetworkInfoModel │ │ │ │ ├── CJNetworkInfoModel.h │ │ │ │ └── CJNetworkInfoModel.m │ │ │ ├── CJObjectConvertUtil │ │ │ │ ├── CJObjectConvertUtil.h │ │ │ │ └── CJObjectConvertUtil.m │ │ │ └── CJResponseModel │ │ │ │ ├── CJResponseModel.h │ │ │ │ └── CJResponseModel.m │ │ └── CJRequestUtil │ │ │ ├── CJRequestUtil.h │ │ │ └── CJRequestUtil.m │ ├── LICENSE │ └── README.md │ ├── DZNEmptyDataSet │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── UIScrollView+EmptyDataSet.h │ │ └── UIScrollView+EmptyDataSet.m │ ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ └── AFNetworkReachabilityManager.h │ │ ├── CJBaseEffectKit │ │ │ ├── CJDataEmptyView.h │ │ │ └── UIScrollView+CJAddFillView.h │ │ ├── CJBaseHelper │ │ │ ├── AuthorizationCJHelper.h │ │ │ ├── CJDateModel.h │ │ │ ├── DeviceCJHelper.h │ │ │ ├── HookCJHelper.h │ │ │ ├── NSCalendarCJHelper.h │ │ │ ├── NSDateFormatterCJHelper.h │ │ │ ├── NSObjectCJHelper.h │ │ │ ├── NSOperationQueueCJHelper.h │ │ │ ├── UIViewControllerCJHelper.h │ │ │ └── WebCJHelper.h │ │ ├── CJBaseUIKit │ │ │ ├── CJAdsorbModel.h │ │ │ ├── CJAlert.h │ │ │ ├── CJAlertView.h │ │ │ ├── CJBadgeButton.h │ │ │ ├── CJBaseTableViewCell.h │ │ │ ├── CJBaseUISlider.h │ │ │ ├── CJButton.h │ │ │ ├── CJDefaultToolbar.h │ │ │ ├── CJExtraTextTextField.h │ │ │ ├── CJKeyboardAvoidingScrollView.h │ │ │ ├── CJKeyboardAvoidingTableView.h │ │ │ ├── CJPlayerSlider.h │ │ │ ├── CJRangeSliderControl.h │ │ │ ├── CJSlider.h │ │ │ ├── CJSliderControl.h │ │ │ ├── CJSliderPopover.h │ │ │ ├── CJSliderThumb.h │ │ │ ├── CJSwitchSlider.h │ │ │ ├── CJSwitchSliderStatusModel.h │ │ │ ├── CJTableViewHeaderFooterView.h │ │ │ ├── CJTextField.h │ │ │ ├── CJTextView.h │ │ │ ├── CJToast.h │ │ │ ├── CJUIKit.h │ │ │ ├── UIButton+CJMoreProperty.h │ │ │ ├── UIButton+CJUpDownStructure.h │ │ │ ├── UIColor+CJHex.h │ │ │ ├── UIImage+CJBase64.h │ │ │ ├── UIImage+CJBlur.h │ │ │ ├── UIImage+CJChangeColor.h │ │ │ ├── UIImage+CJCreate.h │ │ │ ├── UIImage+CJFixOrientation.h │ │ │ ├── UIImage+CJMakeCircle.h │ │ │ ├── UIImage+CJRotateAngle.h │ │ │ ├── UIImage+CJSplitImageIntoTwoParts.h │ │ │ ├── UIImage+CJTransformSize.h │ │ │ ├── UIImageCJCategory.h │ │ │ ├── UINavigationBar+CJChangeBG.h │ │ │ ├── UIScrollView+CJKeyboardAvoiding.h │ │ │ ├── UISearchBar+CJAddInputAccessoryView.h │ │ │ ├── UITextField+CJAddInputAccessoryView.h │ │ │ ├── UITextField+CJForbidKeyboard.h │ │ │ ├── UITextField+CJPadding.h │ │ │ ├── UITextField+CJSelectedTextRange.h │ │ │ ├── UITextField+CJTextChangeBlock.h │ │ │ ├── UITextFieldCJCategory.h │ │ │ ├── UIView+CJDragAction.h │ │ │ ├── UIView+CJExclusiveTouch.h │ │ │ ├── UIView+CJGestureRecognizer.h │ │ │ ├── UIView+CJKeepBounds.h │ │ │ ├── UIView+CJPopupInView.h │ │ │ ├── UIView+CJRounderCorner.h │ │ │ ├── UIView+CJShake.h │ │ │ ├── UIView+CJShowExtendView.h │ │ │ ├── UIViewCJCategory.h │ │ │ ├── UIViewController+CJCustomBackBarButtonItem.h │ │ │ ├── UIViewController+CJSystemBackButtonHandler.h │ │ │ ├── UIViewController+CJSystemComposeView.h │ │ │ ├── UIViewController+CJToast.h │ │ │ └── UIWindow+CJSnapshot.h │ │ ├── CJBaseUtil │ │ │ ├── CJAppLastLaunchInfo.h │ │ │ ├── CJAppLastLaunchInfoManager.h │ │ │ ├── CJAppLastUser.h │ │ │ ├── CJAppLastUserManager.h │ │ │ ├── CJAppLastUtil.h │ │ │ ├── CJCallUtil.h │ │ │ ├── CJDataAllUtil.h │ │ │ ├── CJDataUtil+CJSectionDataModel.h │ │ │ ├── CJDataUtil+NormalSearch.h │ │ │ ├── CJDataUtil+SortCategory.h │ │ │ ├── CJDataUtil+SortOrder.h │ │ │ ├── CJDataUtil+Value.h │ │ │ ├── CJDataUtil.h │ │ │ ├── CJDateOtherUtil.h │ │ │ ├── CJIndentedStringUtil.h │ │ │ ├── CJKeyboardUtil.h │ │ │ ├── CJLaunchImageUtil.h │ │ │ ├── CJLocationChangeManager.h │ │ │ ├── CJLocationChangeModel.h │ │ │ ├── CJModuleManager.h │ │ │ ├── CJModuleModel.h │ │ │ ├── CJPinyinHelper.h │ │ │ ├── CJQRCodeUtil.h │ │ │ ├── CJRealtimeSearchUtil.h │ │ │ ├── CJSearchResult.h │ │ │ ├── CJSectionDataModel.h │ │ │ ├── CJSortedCategoryResult.h │ │ │ ├── CJSuspendWindowManager.h │ │ │ ├── CJTimerManager.h │ │ │ ├── CJTimerModel.h │ │ │ └── NSObject+SearchProperty.h │ │ ├── CJComplexUIKit │ │ │ ├── CJBaseCollectionViewCell.h │ │ │ ├── CJBaseWebViewController.h │ │ │ ├── CJCellHorizontalLayout.h │ │ │ ├── CJCircleLayout.h │ │ │ ├── CJCollectionViewHeaderFooterView.h │ │ │ ├── CJEmptyViewProtocol.h │ │ │ ├── CJFullBottomCollectionViewCell.h │ │ │ ├── CJFullCenterCollectionViewCell.h │ │ │ ├── CJHeadAndCellHorizontalLayout.h │ │ │ ├── CJLineCell.h │ │ │ ├── CJOpenCollectionView.h │ │ │ ├── MyEqualCellSizeCollectionView+Select.h │ │ │ ├── MyEqualCellSizeCollectionView.h │ │ │ └── MyEqualCellSizeSetting.h │ │ ├── CJFile │ │ │ ├── CJFileManager+CalculateFileSize.h │ │ │ ├── CJFileManager+DeleteCleanFile.h │ │ │ ├── CJFileManager+GetCreatePath.h │ │ │ ├── CJFileManager+SaveFileData.h │ │ │ ├── CJFileManager.h │ │ │ └── CJPathFileModel.h │ │ ├── CJFoundation │ │ │ ├── NSDictionary+CJConvert.h │ │ │ ├── NSJSONSerialization+CJCategory.h │ │ │ ├── NSString+CJAttributedString.h │ │ │ ├── NSString+CJCategory.h │ │ │ ├── NSString+CJEncoding.h │ │ │ ├── NSString+CJEncryption.h │ │ │ ├── NSString+CJTextSize.h │ │ │ └── NSString+CJValidate.h │ │ ├── CJHook │ │ │ ├── CJFileUploadPanel.h │ │ │ ├── UIButton+CJFixMultiClick.h │ │ │ ├── UIViewController+CJHookImagePicker.h │ │ │ └── UIViewController+CJHookPresent.h │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ ├── PinYin4Objc │ │ │ ├── ChineseToPinyinResource.h │ │ │ ├── HanyuPinyinOutputFormat.h │ │ │ ├── NSString+PinYin4Cocoa.h │ │ │ ├── PinYin4Objc.h │ │ │ ├── PinyinFormatter.h │ │ │ └── PinyinHelper.h │ │ ├── SAMKeychain │ │ │ ├── SAMKeychain.h │ │ │ └── SAMKeychainQuery.h │ │ └── SVProgressHUD │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ ├── SVProgressAnimatedView.h │ │ │ ├── SVProgressHUD.h │ │ │ └── SVRadialGradientLayer.h │ └── Public │ │ ├── AFNetworking │ │ └── AFNetworkReachabilityManager.h │ │ ├── CJBaseEffectKit │ │ ├── CJDataEmptyView.h │ │ └── UIScrollView+CJAddFillView.h │ │ ├── CJBaseHelper │ │ ├── AuthorizationCJHelper.h │ │ ├── CJDateModel.h │ │ ├── DeviceCJHelper.h │ │ ├── HookCJHelper.h │ │ ├── NSCalendarCJHelper.h │ │ ├── NSDateFormatterCJHelper.h │ │ ├── NSObjectCJHelper.h │ │ ├── NSOperationQueueCJHelper.h │ │ ├── UIViewControllerCJHelper.h │ │ └── WebCJHelper.h │ │ ├── CJBaseUIKit │ │ ├── CJAdsorbModel.h │ │ ├── CJAlert.h │ │ ├── CJAlertView.h │ │ ├── CJBadgeButton.h │ │ ├── CJBaseTableViewCell.h │ │ ├── CJBaseUISlider.h │ │ ├── CJButton.h │ │ ├── CJDefaultToolbar.h │ │ ├── CJExtraTextTextField.h │ │ ├── CJKeyboardAvoidingScrollView.h │ │ ├── CJKeyboardAvoidingTableView.h │ │ ├── CJPlayerSlider.h │ │ ├── CJRangeSliderControl.h │ │ ├── CJSlider.h │ │ ├── CJSliderControl.h │ │ ├── CJSliderPopover.h │ │ ├── CJSliderThumb.h │ │ ├── CJSwitchSlider.h │ │ ├── CJSwitchSliderStatusModel.h │ │ ├── CJTableViewHeaderFooterView.h │ │ ├── CJTextField.h │ │ ├── CJTextView.h │ │ ├── CJToast.h │ │ ├── CJUIKit.h │ │ ├── UIButton+CJMoreProperty.h │ │ ├── UIButton+CJUpDownStructure.h │ │ ├── UIColor+CJHex.h │ │ ├── UIImage+CJBase64.h │ │ ├── UIImage+CJBlur.h │ │ ├── UIImage+CJChangeColor.h │ │ ├── UIImage+CJCreate.h │ │ ├── UIImage+CJFixOrientation.h │ │ ├── UIImage+CJMakeCircle.h │ │ ├── UIImage+CJRotateAngle.h │ │ ├── UIImage+CJSplitImageIntoTwoParts.h │ │ ├── UIImage+CJTransformSize.h │ │ ├── UIImageCJCategory.h │ │ ├── UINavigationBar+CJChangeBG.h │ │ ├── UIScrollView+CJKeyboardAvoiding.h │ │ ├── UISearchBar+CJAddInputAccessoryView.h │ │ ├── UITextField+CJAddInputAccessoryView.h │ │ ├── UITextField+CJForbidKeyboard.h │ │ ├── UITextField+CJPadding.h │ │ ├── UITextField+CJSelectedTextRange.h │ │ ├── UITextField+CJTextChangeBlock.h │ │ ├── UITextFieldCJCategory.h │ │ ├── UIView+CJDragAction.h │ │ ├── UIView+CJExclusiveTouch.h │ │ ├── UIView+CJGestureRecognizer.h │ │ ├── UIView+CJKeepBounds.h │ │ ├── UIView+CJPopupInView.h │ │ ├── UIView+CJRounderCorner.h │ │ ├── UIView+CJShake.h │ │ ├── UIView+CJShowExtendView.h │ │ ├── UIViewCJCategory.h │ │ ├── UIViewController+CJCustomBackBarButtonItem.h │ │ ├── UIViewController+CJSystemBackButtonHandler.h │ │ ├── UIViewController+CJSystemComposeView.h │ │ ├── UIViewController+CJToast.h │ │ └── UIWindow+CJSnapshot.h │ │ ├── CJBaseUtil │ │ ├── CJAppLastLaunchInfo.h │ │ ├── CJAppLastLaunchInfoManager.h │ │ ├── CJAppLastUser.h │ │ ├── CJAppLastUserManager.h │ │ ├── CJAppLastUtil.h │ │ ├── CJCallUtil.h │ │ ├── CJDataAllUtil.h │ │ ├── CJDataUtil+CJSectionDataModel.h │ │ ├── CJDataUtil+NormalSearch.h │ │ ├── CJDataUtil+SortCategory.h │ │ ├── CJDataUtil+SortOrder.h │ │ ├── CJDataUtil+Value.h │ │ ├── CJDataUtil.h │ │ ├── CJDateOtherUtil.h │ │ ├── CJIndentedStringUtil.h │ │ ├── CJKeyboardUtil.h │ │ ├── CJLaunchImageUtil.h │ │ ├── CJLocationChangeManager.h │ │ ├── CJLocationChangeModel.h │ │ ├── CJModuleManager.h │ │ ├── CJModuleModel.h │ │ ├── CJPinyinHelper.h │ │ ├── CJQRCodeUtil.h │ │ ├── CJRealtimeSearchUtil.h │ │ ├── CJSearchResult.h │ │ ├── CJSectionDataModel.h │ │ ├── CJSortedCategoryResult.h │ │ ├── CJSuspendWindowManager.h │ │ ├── CJTimerManager.h │ │ ├── CJTimerModel.h │ │ └── NSObject+SearchProperty.h │ │ ├── CJComplexUIKit │ │ ├── CJBaseCollectionViewCell.h │ │ ├── CJBaseWebViewController.h │ │ ├── CJCellHorizontalLayout.h │ │ ├── CJCircleLayout.h │ │ ├── CJCollectionViewHeaderFooterView.h │ │ ├── CJEmptyViewProtocol.h │ │ ├── CJFullBottomCollectionViewCell.h │ │ ├── CJFullCenterCollectionViewCell.h │ │ ├── CJHeadAndCellHorizontalLayout.h │ │ ├── CJLineCell.h │ │ ├── CJOpenCollectionView.h │ │ ├── MyEqualCellSizeCollectionView+Select.h │ │ ├── MyEqualCellSizeCollectionView.h │ │ └── MyEqualCellSizeSetting.h │ │ ├── CJFile │ │ ├── CJFileManager+CalculateFileSize.h │ │ ├── CJFileManager+DeleteCleanFile.h │ │ ├── CJFileManager+GetCreatePath.h │ │ ├── CJFileManager+SaveFileData.h │ │ ├── CJFileManager.h │ │ └── CJPathFileModel.h │ │ ├── CJFoundation │ │ ├── NSDictionary+CJConvert.h │ │ ├── NSJSONSerialization+CJCategory.h │ │ ├── NSString+CJAttributedString.h │ │ ├── NSString+CJCategory.h │ │ ├── NSString+CJEncoding.h │ │ ├── NSString+CJEncryption.h │ │ ├── NSString+CJTextSize.h │ │ └── NSString+CJValidate.h │ │ ├── CJHook │ │ ├── CJFileUploadPanel.h │ │ ├── UIButton+CJFixMultiClick.h │ │ ├── UIViewController+CJHookImagePicker.h │ │ └── UIViewController+CJHookPresent.h │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ ├── PinYin4Objc │ │ ├── ChineseToPinyinResource.h │ │ ├── HanyuPinyinOutputFormat.h │ │ ├── NSString+PinYin4Cocoa.h │ │ ├── PinYin4Objc.h │ │ ├── PinyinFormatter.h │ │ └── PinyinHelper.h │ │ ├── SAMKeychain │ │ ├── SAMKeychain.h │ │ └── SAMKeychainQuery.h │ │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVProgressAnimatedView.h │ │ ├── SVProgressHUD.h │ │ └── SVRadialGradientLayer.h │ ├── JGActionSheet │ ├── JGActionSheet │ │ ├── JGActionSheet.h │ │ └── JGActionSheet.m │ ├── LICENSE.txt │ └── README.md │ ├── Local Podspecs │ ├── CJBaseEffectKit.podspec.json │ ├── CJBaseHelper.podspec.json │ ├── CJBaseUIKit.podspec.json │ ├── CJBaseUtil.podspec.json │ ├── CJComplexUIKit.podspec.json │ ├── CJFoundation.podspec.json │ └── CJHook.podspec.json │ ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown │ ├── Manifest.lock │ ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md │ ├── PinYin4Objc │ ├── LICENSE │ ├── PinYin4Objc │ │ ├── Classes │ │ │ ├── ChineseToPinyinResource.h │ │ │ ├── ChineseToPinyinResource.m │ │ │ ├── HanyuPinyinOutputFormat.h │ │ │ ├── HanyuPinyinOutputFormat.m │ │ │ ├── NSString+PinYin4Cocoa.h │ │ │ ├── NSString+PinYin4Cocoa.m │ │ │ ├── PinYin4Objc.h │ │ │ ├── PinyinFormatter.h │ │ │ ├── PinyinFormatter.m │ │ │ ├── PinyinHelper.h │ │ │ └── PinyinHelper.m │ │ └── Resources │ │ │ └── unicode_to_hanyu_pinyin.txt │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── SAMKeychain │ ├── LICENSE │ ├── Readme.markdown │ ├── Sources │ │ ├── SAMKeychain.h │ │ ├── SAMKeychain.m │ │ ├── SAMKeychainQuery.h │ │ └── SAMKeychainQuery.m │ └── Support │ │ └── SAMKeychain.bundle │ │ └── en.lproj │ │ └── SAMKeychain.strings │ ├── SVProgressHUD │ ├── LICENSE │ ├── README.md │ └── SVProgressHUD │ │ ├── SVIndefiniteAnimatedView.h │ │ ├── SVIndefiniteAnimatedView.m │ │ ├── SVProgressAnimatedView.h │ │ ├── SVProgressAnimatedView.m │ │ ├── SVProgressHUD.bundle │ │ ├── angle-mask.png │ │ ├── angle-mask@2x.png │ │ ├── angle-mask@3x.png │ │ ├── error.png │ │ ├── error@2x.png │ │ ├── error@3x.png │ │ ├── info.png │ │ ├── info@2x.png │ │ ├── info@3x.png │ │ ├── success.png │ │ ├── success@2x.png │ │ └── success@3x.png │ │ ├── SVProgressHUD.h │ │ ├── SVProgressHUD.m │ │ ├── SVRadialGradientLayer.h │ │ └── SVRadialGradientLayer.m │ └── Target Support Files │ ├── AFNetworking │ ├── AFNetworking-dummy.m │ ├── AFNetworking-prefix.pch │ └── AFNetworking.xcconfig │ ├── CJBaseEffectKit │ ├── CJBaseEffectKit-dummy.m │ ├── CJBaseEffectKit-prefix.pch │ └── CJBaseEffectKit.xcconfig │ ├── CJBaseHelper │ ├── CJBaseHelper-dummy.m │ ├── CJBaseHelper-prefix.pch │ └── CJBaseHelper.xcconfig │ ├── CJBaseUIKit │ ├── CJBaseUIKit-dummy.m │ ├── CJBaseUIKit-prefix.pch │ └── CJBaseUIKit.xcconfig │ ├── CJBaseUtil │ ├── CJBaseUtil-dummy.m │ ├── CJBaseUtil-prefix.pch │ └── CJBaseUtil.xcconfig │ ├── CJComplexUIKit │ ├── CJComplexUIKit-dummy.m │ ├── CJComplexUIKit-prefix.pch │ └── CJComplexUIKit.xcconfig │ ├── CJFile │ ├── CJFile-dummy.m │ ├── CJFile-prefix.pch │ └── CJFile.xcconfig │ ├── CJFoundation │ ├── CJFoundation-dummy.m │ ├── CJFoundation-prefix.pch │ └── CJFoundation.xcconfig │ ├── CJHook │ ├── CJHook-dummy.m │ ├── CJHook-prefix.pch │ └── CJHook.xcconfig │ ├── MBProgressHUD │ ├── MBProgressHUD-dummy.m │ ├── MBProgressHUD-prefix.pch │ └── MBProgressHUD.xcconfig │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ ├── PinYin4Objc │ ├── PinYin4Objc-dummy.m │ ├── PinYin4Objc-prefix.pch │ └── PinYin4Objc.xcconfig │ ├── Pods-CJHookDemo │ ├── Pods-CJHookDemo-acknowledgements.markdown │ ├── Pods-CJHookDemo-acknowledgements.plist │ ├── Pods-CJHookDemo-dummy.m │ ├── Pods-CJHookDemo-resources-Debug-input-files.xcfilelist │ ├── Pods-CJHookDemo-resources-Debug-output-files.xcfilelist │ ├── Pods-CJHookDemo-resources-Release-input-files.xcfilelist │ ├── Pods-CJHookDemo-resources-Release-output-files.xcfilelist │ ├── Pods-CJHookDemo-resources.sh │ ├── Pods-CJHookDemo.debug.xcconfig │ └── Pods-CJHookDemo.release.xcconfig │ ├── Pods-CJHookDemoTests │ ├── Pods-CJHookDemoTests-acknowledgements.markdown │ ├── Pods-CJHookDemoTests-acknowledgements.plist │ ├── Pods-CJHookDemoTests-dummy.m │ ├── Pods-CJHookDemoTests.debug.xcconfig │ └── Pods-CJHookDemoTests.release.xcconfig │ ├── SAMKeychain │ ├── SAMKeychain-dummy.m │ ├── SAMKeychain-prefix.pch │ └── SAMKeychain.xcconfig │ └── SVProgressHUD │ ├── SVProgressHUD-dummy.m │ ├── SVProgressHUD-prefix.pch │ └── SVProgressHUD.xcconfig ├── CJUIKitDemo ├── CJUIKitDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── CJUIKitDemo.xcscheme ├── CJUIKitDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── CJUIKitDemo │ ├── AppDelegate │ │ ├── APPUIKitSetting.h │ │ ├── APPUIKitSetting.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── MainViewController.h │ │ ├── MainViewController.m │ │ ├── UIScrollView+CJTouch.h │ │ ├── UIScrollView+CJTouch.m │ │ ├── UIWindow+RootSetting.h │ │ └── UIWindow+RootSetting.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── CommonUI │ │ ├── CJDemoDatePickerView │ │ │ ├── CJDemoDatePickerView.h │ │ │ └── CJDemoDatePickerView.m │ │ ├── CJDemoDateTextField │ │ │ ├── CJDemoDateLabel.h │ │ │ ├── CJDemoDateLabel.m │ │ │ ├── CJDemoDateTextField.h │ │ │ ├── CJDemoDateTextField.m │ │ │ ├── cjTextField_clear@2x.png │ │ │ └── cjTextField_clear@3x.png │ │ ├── DemoLabel │ │ │ ├── DemoLabelFactory.h │ │ │ └── DemoLabelFactory.m │ │ ├── DemoTextFieldFactory │ │ │ ├── DemoTextFieldFactory.h │ │ │ └── DemoTextFieldFactory.m │ │ ├── TSButtonFactory │ │ │ ├── DemoTagButtonFactory.h │ │ │ ├── DemoTagButtonFactory.m │ │ │ ├── TSButtonFactory.h │ │ │ └── TSButtonFactory.m │ │ ├── TSSliderFactory │ │ │ ├── CQAgeRangeSliderControl.h │ │ │ ├── CQAgeRangeSliderControl.m │ │ │ ├── CQShakeUtil.h │ │ │ ├── CQShakeUtil.m │ │ │ ├── Resources │ │ │ │ ├── slider_range_start@2x.png │ │ │ │ └── slider_range_start@3x.png │ │ │ ├── TSRangeSliderControl1.h │ │ │ ├── TSRangeSliderControl1.m │ │ │ ├── TSRangeSliderControl2.h │ │ │ └── TSRangeSliderControl2.m │ │ └── TextField │ │ │ ├── CQBlockTextField.h │ │ │ ├── CQBlockTextField.m │ │ │ └── Helper │ │ │ ├── CQSubStringUtil.h │ │ │ ├── CQSubStringUtil.m │ │ │ ├── UITextViewCQHelper.h │ │ │ └── UITextViewCQHelper.m │ ├── CommonUtil │ │ ├── CJAppVersionUtil.h │ │ ├── CJAppVersionUtil.m │ │ ├── DemoCacheUtil.h │ │ ├── DemoCacheUtil.m │ │ ├── TestDataUtil │ │ │ ├── TestDataModel │ │ │ │ ├── DemoInfo.h │ │ │ │ ├── DemoInfo.m │ │ │ │ ├── TestDataModel.h │ │ │ │ └── TestDataModel.m │ │ │ ├── TestDataUtil.h │ │ │ └── TestDataUtil.m │ │ ├── YunUncaughtExceptionHandler.h │ │ └── YunUncaughtExceptionHandler.m │ ├── Info.plist │ ├── Modules │ │ ├── DemoMore │ │ │ ├── MoreHomeViewController.h │ │ │ └── MoreHomeViewController.m │ │ ├── DemosFoundation │ │ │ ├── FoundationHomeViewController.h │ │ │ ├── FoundationHomeViewController.m │ │ │ ├── NSDate │ │ │ │ ├── DateViewController.h │ │ │ │ ├── DateViewController.m │ │ │ │ └── DateViewController.xib │ │ │ ├── NSString │ │ │ │ ├── AttributedStringViewController.h │ │ │ │ ├── AttributedStringViewController.m │ │ │ │ ├── AttributedStringViewController.xib │ │ │ │ ├── AttributedStringViewController2.h │ │ │ │ ├── AttributedStringViewController2.m │ │ │ │ ├── EncryptStringViewController.h │ │ │ │ ├── EncryptStringViewController.m │ │ │ │ ├── EncryptStringViewController.xib │ │ │ │ ├── StringForInputLimit │ │ │ │ │ ├── AStringLengthViewController.h │ │ │ │ │ ├── AStringLengthViewController.m │ │ │ │ │ ├── BIndexSubStringViewController.h │ │ │ │ │ ├── BIndexSubStringViewController.m │ │ │ │ │ ├── BRangeSubStringViewController.h │ │ │ │ │ ├── BRangeSubStringViewController.m │ │ │ │ │ ├── CMaxSubStringViewController1.h │ │ │ │ │ ├── CMaxSubStringViewController1.m │ │ │ │ │ ├── CMaxSubStringViewController2.h │ │ │ │ │ ├── CMaxSubStringViewController2.m │ │ │ │ │ ├── DChangeStringViewController1.h │ │ │ │ │ ├── DChangeStringViewController1.m │ │ │ │ │ ├── StringForInputHomeViewController.h │ │ │ │ │ └── StringForInputHomeViewController.m │ │ │ │ ├── StringHomeViewController.h │ │ │ │ ├── StringHomeViewController.m │ │ │ │ ├── TextSize │ │ │ │ │ ├── TextSizeCompareView.h │ │ │ │ │ ├── TextSizeCompareView.m │ │ │ │ │ ├── TextSizeViewController.h │ │ │ │ │ └── TextSizeViewController.m │ │ │ │ ├── ValidateStringViewController.h │ │ │ │ └── ValidateStringViewController.m │ │ │ └── TypeConvert │ │ │ │ ├── TypeConvertViewController.h │ │ │ │ ├── TypeConvertViewController.m │ │ │ │ └── TypeConvertViewController.xib │ │ ├── DemosHelper │ │ │ ├── AuthorizationCJHelper │ │ │ │ ├── AuthorizationCJHelperViewController.h │ │ │ │ └── AuthorizationCJHelperViewController.m │ │ │ ├── HelperHomeViewController.h │ │ │ ├── HelperHomeViewController.m │ │ │ ├── NSCalendarCJHelper │ │ │ │ ├── NSCalendarCJHelperViewController.h │ │ │ │ ├── NSCalendarCJHelperViewController.m │ │ │ │ ├── TestValueChangeModel.h │ │ │ │ ├── TestValueChangeModel.m │ │ │ │ ├── TestValueChangeTableViewCell.h │ │ │ │ ├── TestValueChangeTableViewCell.m │ │ │ │ ├── add_common_icon@2x.png │ │ │ │ ├── add_common_icon@3x.png │ │ │ │ ├── minus_common_icon@2x.png │ │ │ │ └── minus_common_icon@3x.png │ │ │ ├── NSObjectCJHelper │ │ │ │ ├── NSObjectCJHelperViewController.h │ │ │ │ └── NSObjectCJHelperViewController.m │ │ │ └── UIViewControllerCJHelper │ │ │ │ ├── PresentAViewController.h │ │ │ │ ├── PresentAViewController.m │ │ │ │ ├── PresentBViewController.h │ │ │ │ ├── PresentBViewController.m │ │ │ │ ├── PresentBaseViewController.h │ │ │ │ ├── PresentBaseViewController.m │ │ │ │ ├── closePresentVC@2x.png │ │ │ │ └── closePresentVC@3x.png │ │ ├── DemosOther │ │ │ ├── CountDownTimeDemo │ │ │ │ ├── CountDownTimeViewController.h │ │ │ │ ├── CountDownTimeViewController.m │ │ │ │ └── CountDownTimeViewController.xib │ │ │ ├── OtherHomeViewController.h │ │ │ └── OtherHomeViewController.m │ │ ├── DemosThirdParty │ │ │ ├── MJExtensionDemo │ │ │ │ ├── MJExtensionToJSONViewController.h │ │ │ │ ├── MJExtensionToJSONViewController.m │ │ │ │ ├── MJExtensionToModelViewController.h │ │ │ │ ├── MJExtensionToModelViewController.m │ │ │ │ └── Models │ │ │ │ │ ├── DemoBusFlightModel.h │ │ │ │ │ ├── DemoBusFlightModel.m │ │ │ │ │ ├── DemoBusFlightStationModel.h │ │ │ │ │ ├── DemoBusFlightStationModel.m │ │ │ │ │ ├── DemoBusFlightStationOnOffDetailModel.h │ │ │ │ │ ├── DemoBusFlightStationOnOffDetailModel.m │ │ │ │ │ ├── DemoBusPassengerModel.h │ │ │ │ │ ├── DemoBusPassengerModel.m │ │ │ │ │ ├── DemoBusPassengerOrderModel.h │ │ │ │ │ ├── DemoBusPassengerOrderModel.m │ │ │ │ │ ├── DemoBusStationLocationModel.h │ │ │ │ │ ├── DemoBusStationLocationModel.m │ │ │ │ │ ├── DemoBusStationModel.h │ │ │ │ │ ├── DemoBusStationModel.m │ │ │ │ │ ├── DemoEasyModel.h │ │ │ │ │ └── DemoEasyModel.m │ │ │ ├── MantleDemo │ │ │ │ ├── MantleViewController.h │ │ │ │ ├── MantleViewController.m │ │ │ │ └── Models │ │ │ │ │ ├── DemoUsePermissionModel.h │ │ │ │ │ ├── DemoUsePermissionModel.m │ │ │ │ │ ├── DemoUser.h │ │ │ │ │ └── DemoUser.m │ │ │ ├── TSBugLayoutPriorityView.h │ │ │ ├── TSBugLayoutPriorityView.m │ │ │ ├── TSLayoutPriorityView.h │ │ │ ├── TSLayoutPriorityView.m │ │ │ ├── TSLayoutPriorityViewController.h │ │ │ ├── TSLayoutPriorityViewController.m │ │ │ ├── ThirdPartyHomeViewController.h │ │ │ ├── ThirdPartyHomeViewController.m │ │ │ ├── recognize_icon_pass@2x.png │ │ │ └── recognize_icon_pass@3x.png │ │ ├── DemosUtil │ │ │ ├── CallSystemUtilDemo │ │ │ │ ├── CallSystemViewController.h │ │ │ │ └── CallSystemViewController.m │ │ │ ├── DataUtilDemo │ │ │ │ ├── CJDataSearchUtil.h │ │ │ │ ├── CJDataSearchUtil.m │ │ │ │ ├── CJSortUtil.h │ │ │ │ ├── CJSortUtil.m │ │ │ │ ├── DataUtilViewController.h │ │ │ │ ├── DataUtilViewController.m │ │ │ │ └── DataUtilViewController.xib │ │ │ ├── DeviceInfoDemo │ │ │ │ ├── DeviceInfo.h │ │ │ │ ├── DeviceInfo.m │ │ │ │ ├── DeviceInfoViewController.h │ │ │ │ └── DeviceInfoViewController.m │ │ │ ├── KeyboardUtilDemo │ │ │ │ ├── KeyboardUtilViewController.h │ │ │ │ ├── KeyboardUtilViewController.m │ │ │ │ └── KeyboardUtilViewController.xib │ │ │ ├── KnowledgeDemo │ │ │ │ ├── LockGateKeeperViewController.h │ │ │ │ ├── LockGateKeeperViewController.m │ │ │ │ ├── SemaphoreGateKeeperViewController.h │ │ │ │ └── SemaphoreGateKeeperViewController.m │ │ │ ├── SharedInstanceDemo │ │ │ │ ├── Inherit │ │ │ │ │ ├── InheritableSharedInstanceClass.h │ │ │ │ │ ├── InheritableSharedInstanceClass.m │ │ │ │ │ ├── SubInheritableSharedInstanceClass.h │ │ │ │ │ ├── SubInheritableSharedInstanceClass.m │ │ │ │ │ ├── SubNormalSharedInstanceClass.h │ │ │ │ │ └── SubNormalSharedInstanceClass.m │ │ │ │ ├── NormalSharedInstanceClass.h │ │ │ │ ├── NormalSharedInstanceClass.m │ │ │ │ ├── PerfectSharedInstanceClass.h │ │ │ │ ├── PerfectSharedInstanceClass.m │ │ │ │ ├── SharedInstanceViewController.h │ │ │ │ └── SharedInstanceViewController.m │ │ │ ├── StringUtilDemo │ │ │ │ ├── StringEventViewController.h │ │ │ │ └── StringEventViewController.m │ │ │ ├── UtilHomeViewController.h │ │ │ ├── UtilHomeViewController.m │ │ │ └── ValueUtilDemo │ │ │ │ ├── AccuracyStringViewController.h │ │ │ │ ├── AccuracyStringViewController.m │ │ │ │ ├── PriceFenToYuanViewController.h │ │ │ │ ├── PriceFenToYuanViewController.m │ │ │ │ ├── PriceYuanToYuanViewController.h │ │ │ │ └── PriceYuanToYuanViewController.m │ │ └── DemosView │ │ │ ├── AutoLayoutDemo │ │ │ ├── AutoLayoutHomeViewController.h │ │ │ ├── AutoLayoutHomeViewController.m │ │ │ ├── AutoLayoutViewController.h │ │ │ ├── AutoLayoutViewController.m │ │ │ ├── EdgeLayoutTableViewController.h │ │ │ ├── EdgeLayoutTableViewController.m │ │ │ ├── EdgeLayoutViewController.h │ │ │ ├── EdgeLayoutViewController.m │ │ │ ├── TranslucentLayoutTableViewController.h │ │ │ ├── TranslucentLayoutTableViewController.m │ │ │ ├── TranslucentLayoutViewController.h │ │ │ └── TranslucentLayoutViewController.m │ │ │ ├── CJBaseTableViewCellDemo │ │ │ ├── BaseTableViewCellViewController.h │ │ │ ├── BaseTableViewCellViewController.m │ │ │ └── View │ │ │ │ ├── CJBaseTableViewCell+ConfigureForDataModel.h │ │ │ │ └── CJBaseTableViewCell+ConfigureForDataModel.m │ │ │ ├── CJFloatingWindowDemo │ │ │ ├── FloatingWindowViewController.h │ │ │ ├── FloatingWindowViewController.m │ │ │ ├── SuspendWindowViewController.h │ │ │ ├── SuspendWindowViewController.m │ │ │ └── Views │ │ │ │ ├── DemoFloatingWindow.h │ │ │ │ ├── DemoFloatingWindow.m │ │ │ │ ├── DemoSuspendWindowRootViewController.h │ │ │ │ ├── DemoSuspendWindowRootViewController.m │ │ │ │ ├── SuspendWindowFactory.h │ │ │ │ ├── SuspendWindowFactory.m │ │ │ │ ├── UIView+CJPopupInSuspendWindow.h │ │ │ │ └── UIView+CJPopupInSuspendWindow.m │ │ │ ├── CJSliderDemo │ │ │ ├── RangeSliderViewController.h │ │ │ ├── RangeSliderViewController.m │ │ │ ├── Resources │ │ │ │ ├── btn_hd@2x.png │ │ │ │ ├── btn_hd@3x.png │ │ │ │ ├── details_icon_huadong@2x.png │ │ │ │ ├── details_icon_huadong@3x.png │ │ │ │ ├── icon_ddlb_hd@2x.png │ │ │ │ ├── icon_ddlb_jd@2x.png │ │ │ │ ├── slider_double_thumbImage_a@2x.png │ │ │ │ ├── slider_double_thumbImage_a@3x.png │ │ │ │ ├── slider_double_thumbImage_b@2x.png │ │ │ │ ├── slider_double_thumbImage_b@3x.png │ │ │ │ ├── slider_maximum_trackimage@2x.png │ │ │ │ ├── slider_maximum_trackimage@3x.png │ │ │ │ ├── slider_minimum_trackimage@2x.png │ │ │ │ ├── slider_minimum_trackimage@3x.png │ │ │ │ ├── slider_thumbImage@2x.png │ │ │ │ └── slider_thumbImage@3x.png │ │ │ ├── SliderHomeViewController.h │ │ │ ├── SliderHomeViewController.m │ │ │ ├── SliderViewController.h │ │ │ ├── SliderViewController.m │ │ │ ├── SliderViewController.xib │ │ │ ├── SwitchSliderViewController.h │ │ │ ├── SwitchSliderViewController.m │ │ │ ├── SwitchSliderViewController.xib │ │ │ └── Views │ │ │ │ ├── BBXShimmeringSwitchSlider.h │ │ │ │ ├── BBXShimmeringSwitchSlider.m │ │ │ │ ├── BusShimmeringSwitchSlider.h │ │ │ │ ├── BusShimmeringSwitchSlider.m │ │ │ │ ├── ShimmeringSwitchSlider.h │ │ │ │ └── ShimmeringSwitchSlider.m │ │ │ ├── ChangeEnvironmentDemo │ │ │ ├── ChangeEnvHomeViewController.h │ │ │ ├── ChangeEnvHomeViewController.m │ │ │ ├── ChangeEnvironmentViewController.h │ │ │ ├── ChangeEnvironmentViewController.m │ │ │ ├── DemoChangeEnvironmentViewModel.h │ │ │ ├── DemoChangeEnvironmentViewModel.m │ │ │ ├── LoginChangeEnvironmentViewController.h │ │ │ ├── LoginChangeEnvironmentViewController.m │ │ │ ├── UIViewController+CJChangeEnvironment.h │ │ │ └── UIViewController+CJChangeEnvironment.m │ │ │ ├── HomeViewController.h │ │ │ ├── HomeViewController.m │ │ │ ├── InterfaceDemo │ │ │ ├── BeChangeViewController.h │ │ │ ├── BeChangeViewController.m │ │ │ ├── ChangeViewController.h │ │ │ ├── ChangeViewController.m │ │ │ ├── ChangeViewController.xib │ │ │ ├── NestedXibSubViewA.h │ │ │ ├── NestedXibSubViewA.m │ │ │ ├── NestedXibSubViewA.xib │ │ │ ├── NestedXibView.h │ │ │ ├── NestedXibView.m │ │ │ ├── NestedXibView.xib │ │ │ ├── NestedXibViewController.h │ │ │ ├── NestedXibViewController.m │ │ │ └── NestedXibViewController.xib │ │ │ ├── TextFieldDemo │ │ │ ├── TSTextFieldAccessoryViewController.h │ │ │ ├── TSTextFieldAccessoryViewController.m │ │ │ ├── TSTextFieldBlockViewController.h │ │ │ ├── TSTextFieldBlockViewController.m │ │ │ ├── TSTextFieldClickViewController.h │ │ │ ├── TSTextFieldClickViewController.m │ │ │ ├── TSTextFieldDelegateViewController.h │ │ │ ├── TSTextFieldDelegateViewController.m │ │ │ ├── TSTextFieldInputViewController.h │ │ │ ├── TSTextFieldInputViewController.m │ │ │ ├── TSTextFieldOffsetViewController.h │ │ │ ├── TSTextFieldOffsetViewController.m │ │ │ ├── TextFieldHomeViewController.h │ │ │ ├── TextFieldHomeViewController.m │ │ │ └── Views │ │ │ │ ├── BBXDAreaCodeTextField.h │ │ │ │ ├── BBXDAreaCodeTextField.m │ │ │ │ ├── BBXDPasswordTextField.h │ │ │ │ ├── BBXDPasswordTextField.m │ │ │ │ ├── BBXDUserNameTextField.h │ │ │ │ ├── BBXDUserNameTextField.m │ │ │ │ ├── TestTextFieldOffsetTableViewCell.h │ │ │ │ ├── TestTextFieldOffsetTableViewCell.m │ │ │ │ ├── signin_icon_open@2x.png │ │ │ │ └── signin_icon_open@3x.png │ │ │ ├── TextViewDemo │ │ │ ├── Resources │ │ │ │ ├── plus@2x.png │ │ │ │ ├── smail@2x.png │ │ │ │ └── sound@2x.png │ │ │ ├── TextViewAutoHeightViewController.h │ │ │ ├── TextViewAutoHeightViewController.m │ │ │ ├── TextViewController.h │ │ │ ├── TextViewController.m │ │ │ ├── TextViewController.xib │ │ │ ├── TextViewPlaceholderViewController.h │ │ │ └── TextViewPlaceholderViewController.m │ │ │ ├── UIButtonDemo │ │ │ ├── BadgeButtonViewController.h │ │ │ ├── BadgeButtonViewController.m │ │ │ ├── ButtonCategoryViewController.h │ │ │ ├── ButtonCategoryViewController.m │ │ │ ├── ButtonHomeViewController.h │ │ │ ├── ButtonHomeViewController.m │ │ │ ├── ButtonStructureViewController.h │ │ │ ├── ButtonStructureViewController.m │ │ │ ├── badgeButton_highlighted@2x.png │ │ │ ├── badgeButton_highlighted@3x.png │ │ │ ├── badgeButton_normal@2x.png │ │ │ └── badgeButton_normal@3x.png │ │ │ ├── UIColorDemo │ │ │ ├── ColorViewController.h │ │ │ └── ColorViewController.m │ │ │ ├── UIImageDemo │ │ │ ├── ImageChangeColorViewController.h │ │ │ ├── ImageChangeColorViewController.m │ │ │ ├── ImageCompressViewController.h │ │ │ ├── ImageCompressViewController.m │ │ │ ├── ImageGetterViewController.h │ │ │ ├── ImageGetterViewController.m │ │ │ ├── ImageHomeViewController.h │ │ │ ├── ImageHomeViewController.m │ │ │ ├── ImageRotateViewController.h │ │ │ ├── ImageRotateViewController.m │ │ │ ├── ImageShakeViewController.h │ │ │ ├── ImageShakeViewController.m │ │ │ ├── QRCodeViewController.h │ │ │ ├── QRCodeViewController.m │ │ │ ├── QRCodeViewController.xib │ │ │ ├── Resources │ │ │ │ ├── 10M_01.jpg │ │ │ │ ├── 10M_02.jpg │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── fanwan.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── fanwan.svg │ │ │ │ │ └── qq.symbolset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── qq.svg │ │ │ │ ├── iamcoming.gif │ │ │ │ ├── imageOriginColor@2x.png │ │ │ │ ├── loading@2x.gif │ │ │ │ ├── loading@3x.gif │ │ │ │ ├── longHorizontal.jpg │ │ │ │ ├── longVertical.jpg │ │ │ │ └── taixi_icon@2x.png │ │ │ ├── TSImageCutViewController1.h │ │ │ ├── TSImageCutViewController1.m │ │ │ ├── TSImageCutViewController2.h │ │ │ ├── TSImageCutViewController2.m │ │ │ ├── TwoImageCompareView.h │ │ │ └── TwoImageCompareView.m │ │ │ ├── UINavigationBarDemo │ │ │ ├── ChangeNavigaitionBarBG │ │ │ │ ├── NavigationBarNormalChangeBGViewController.h │ │ │ │ ├── NavigationBarNormalChangeBGViewController.m │ │ │ │ ├── NavigationBarScrollChangeBGViewController.h │ │ │ │ └── NavigationBarScrollChangeBGViewController.m │ │ │ ├── EasyScaleHeadView.h │ │ │ ├── EasyScaleHeadView.m │ │ │ ├── EasyScaleHeadView.xib │ │ │ ├── NavigationBarBaseViewController.h │ │ │ ├── NavigationBarBaseViewController.m │ │ │ ├── NavigationBarChangePositonViewController.h │ │ │ ├── NavigationBarChangePositonViewController.m │ │ │ ├── NavigationBarHomeViewController.h │ │ │ ├── NavigationBarHomeViewController.m │ │ │ ├── NavigationBarRemoveUnderlineViewController.h │ │ │ ├── NavigationBarRemoveUnderlineViewController.m │ │ │ ├── NavigationBarViewController.h │ │ │ ├── NavigationBarViewController.m │ │ │ ├── NavigationBarViewController.xib │ │ │ ├── TableHeaderView.xib │ │ │ └── bgCar@2x.jpg │ │ │ ├── UIScrollViewDemo │ │ │ ├── CodeScrollViewController1.h │ │ │ ├── CodeScrollViewController1.m │ │ │ ├── CodeScrollViewController3.h │ │ │ ├── CodeScrollViewController3.m │ │ │ ├── KeyboardAvoidingViewController.h │ │ │ └── KeyboardAvoidingViewController.m │ │ │ ├── UIViewControllerDemo │ │ │ ├── BackBarButtonItem │ │ │ │ ├── BackCustomItemViewController.h │ │ │ │ ├── BackCustomItemViewController.m │ │ │ │ ├── BackItemBaseViewController.h │ │ │ │ ├── BackItemBaseViewController.m │ │ │ │ ├── BackSystemItemViewController.h │ │ │ │ └── BackSystemItemViewController.m │ │ │ ├── ChildViewController │ │ │ │ ├── AChildViewController.h │ │ │ │ ├── AChildViewController.m │ │ │ │ ├── BChildViewController.h │ │ │ │ ├── BChildViewController.m │ │ │ │ ├── CChildViewController.h │ │ │ │ ├── CChildViewController.m │ │ │ │ ├── DChildViewController.h │ │ │ │ ├── DChildViewController.m │ │ │ │ ├── EChildViewController.h │ │ │ │ ├── EChildViewController.m │ │ │ │ ├── FChildViewController.h │ │ │ │ ├── FChildViewController.m │ │ │ │ ├── Home1.h │ │ │ │ └── Home1.m │ │ │ ├── SystemComposeViewController.h │ │ │ └── SystemComposeViewController.m │ │ │ └── UIViewDemo │ │ │ ├── ViewAnimateDemo │ │ │ ├── ViewAnimateViewController.h │ │ │ ├── ViewAnimateViewController.m │ │ │ ├── animationBg01.jpg │ │ │ └── animationBg02.jpg │ │ │ ├── ViewAutoMoveUp │ │ │ ├── CQUpdateContentPopupView.h │ │ │ ├── CQUpdateContentPopupView.m │ │ │ ├── KeyboardAutoMoveUpViewController.h │ │ │ └── KeyboardAutoMoveUpViewController.m │ │ │ ├── ViewDragDemo │ │ │ ├── DragViewController.h │ │ │ ├── DragViewController.m │ │ │ └── DragViewController.xib │ │ │ ├── ViewHomeViewController.h │ │ │ ├── ViewHomeViewController.m │ │ │ └── ViewPandownDemo │ │ │ ├── TCCommentsPopView │ │ │ ├── CQCommentsPopView.h │ │ │ └── CQCommentsPopView.m │ │ │ ├── ViewPandownViewController1.h │ │ │ ├── ViewPandownViewController1.m │ │ │ ├── ViewPandownViewController2.h │ │ │ └── ViewPandownViewController2.m │ ├── PrefixHeader.pch │ ├── Resources │ │ ├── AppAssets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── iconiPhoneApp_60pt@2x.png │ │ │ │ ├── iconiPhoneApp_60pt@3x.png │ │ │ │ ├── iconiPhoneNotification_20pt@2x.png │ │ │ │ ├── iconiPhoneNotification_20pt@3x.png │ │ │ │ ├── iconiPhoneSpootlight5_29pt@2x.png │ │ │ │ ├── iconiPhoneSpootlight5_29pt@3x.png │ │ │ │ ├── iconiPhoneSpootlight7_40pt@2x.png │ │ │ │ ├── iconiPhoneSpootlight7_40pt@3x.png │ │ │ │ └── iconstore_1024pt.png │ │ │ ├── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ ├── (1242_2688)_414x896pt@3x.png │ │ │ │ ├── (828_1792)_414x896pt@2x.png │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImageiPhonePortraitiOS789_320x480pt@2x.png │ │ │ │ ├── LaunchImageiPhonePortraitiOS789_320x568pt@2x.png │ │ │ │ ├── LaunchImageiPhonePortraitiOS89_375x667pt@2x.png │ │ │ │ ├── LaunchImageiPhonePortraitiOS89_414x736pt@3x.png │ │ │ │ └── LaunchImageiPhoneXPortraitiOS11_375x812pt@3x.png │ │ ├── AppCommon.xcassets │ │ │ ├── Contents.json │ │ │ ├── nav_back_white_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── qrcode_scan_titlebar_back_nor@2x.png │ │ │ ├── nav_back_white_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── qrcode_scan_titlebar_back_pressed@2x.png │ │ │ └── nav_right_gray_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_arrow@2x.png │ │ │ │ └── message_arrow@3x.png │ │ └── bg@2x.jpg │ └── main.m ├── CJUIKitDemoTests │ ├── CJDataUtilTest.m │ ├── CJUIKitDemoTests.m │ ├── Info.plist │ ├── Models │ │ ├── TestCityModel.h │ │ └── TestCityModel.m │ └── UIImageTestCase.m ├── CJUIKitDemoUITests │ ├── CJUIKitDemoUITests.m │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── AFNetworking │ ├── AFNetworking │ │ ├── AFNetworkReachabilityManager.h │ │ └── AFNetworkReachabilityManager.m │ ├── LICENSE │ └── README.md │ ├── CJBaseEffectKit │ ├── CJBaseEffectKit │ │ └── CJScaleHeadView │ │ │ ├── CJScaleHeadView.h │ │ │ ├── CJScaleHeadView.m │ │ │ ├── LEOHeaderView.h │ │ │ ├── LEOHeaderView.m │ │ │ ├── MyUserInfoScaleHeadView.h │ │ │ └── MyUserInfoScaleHeadView.m │ └── README.en.md │ ├── CJFile │ ├── CJFile │ │ ├── CJFileManager │ │ │ ├── CJFileManager+CalculateFileSize.h │ │ │ ├── CJFileManager+CalculateFileSize.m │ │ │ ├── CJFileManager+DeleteCleanFile.h │ │ │ ├── CJFileManager+DeleteCleanFile.m │ │ │ ├── CJFileManager+GetCreatePath.h │ │ │ ├── CJFileManager+GetCreatePath.m │ │ │ ├── CJFileManager+SaveFileData.h │ │ │ ├── CJFileManager+SaveFileData.m │ │ │ ├── CJFileManager.h │ │ │ └── CJFileManager.m │ │ └── CJFileModel │ │ │ ├── CJPathFileModel.h │ │ │ └── CJPathFileModel.m │ ├── LICENSE │ └── README.md │ ├── CJPopupView │ ├── CJPopupView │ │ └── CJPopoverView │ │ │ ├── CJDrawRectUtil.h │ │ │ ├── CJDrawRectUtil.m │ │ │ ├── CJPopoverListView.h │ │ │ ├── CJPopoverListView.m │ │ │ ├── UIButton+CJPopoverListView.h │ │ │ └── UIButton+CJPopoverListView.m │ ├── LICENSE │ └── README.md │ ├── CQDemoKit │ ├── CQDemoKit │ │ ├── Auxiliary │ │ │ ├── UIView+CQAuxiliaryText.h │ │ │ └── UIView+CQAuxiliaryText.m │ │ ├── BaseUIKit │ │ │ ├── CQTSBorderStateButton.h │ │ │ ├── CQTSBorderStateButton.m │ │ │ ├── CQTSButtonFactory.h │ │ │ ├── CQTSButtonFactory.m │ │ │ ├── CQTSContainerViewFactory.h │ │ │ ├── CQTSContainerViewFactory.m │ │ │ ├── CQTSSwitchViewFactory.h │ │ │ ├── CQTSSwitchViewFactory.m │ │ │ ├── UIButton+CQTSMoreProperty.h │ │ │ ├── UIButton+CQTSMoreProperty.m │ │ │ ├── UISwitch+CQTSMoreProperty.h │ │ │ ├── UISwitch+CQTSMoreProperty.m │ │ │ └── image │ │ │ │ ├── CQTSImageLoader.h │ │ │ │ ├── CQTSImageLoader.m │ │ │ │ ├── UIImageView+CQTSBaseUtil.h │ │ │ │ └── UIImageView+CQTSBaseUtil.m │ │ ├── BaseUtil │ │ │ ├── CJUIKitAlertUtil.h │ │ │ ├── CJUIKitAlertUtil.m │ │ │ ├── CJUIKitToastUtil.h │ │ │ └── CJUIKitToastUtil.m │ │ ├── BaseVC │ │ │ ├── Base │ │ │ │ ├── BaseWindow │ │ │ │ │ ├── CQTSSuspendWindow.h │ │ │ │ │ ├── CQTSSuspendWindow.m │ │ │ │ │ └── SuspendWindowFactory │ │ │ │ │ │ ├── CQTSSuspendButtonRootViewController.h │ │ │ │ │ │ ├── CQTSSuspendButtonRootViewController.m │ │ │ │ │ │ ├── CQTSSuspendWindowFactory.h │ │ │ │ │ │ └── CQTSSuspendWindowFactory.m │ │ │ │ ├── CJUIKitBaseViewController.h │ │ │ │ ├── CJUIKitBaseViewController.m │ │ │ │ └── Model │ │ │ │ │ ├── CQDMModuleModel.h │ │ │ │ │ ├── CQDMModuleModel.m │ │ │ │ │ ├── CQDMSectionDataModel.h │ │ │ │ │ └── CQDMSectionDataModel.m │ │ │ ├── Collection │ │ │ │ ├── CJUIKitBaseCollectionHomeViewController.h │ │ │ │ ├── CJUIKitBaseCollectionHomeViewController.m │ │ │ │ ├── CJUIKitCollectionViewCell.h │ │ │ │ ├── CJUIKitCollectionViewCell.m │ │ │ │ ├── CJUIKitCollectionViewHeader.h │ │ │ │ └── CJUIKitCollectionViewHeader.m │ │ │ ├── ScrollView │ │ │ │ ├── CJUIKitBaseScrollViewController.h │ │ │ │ └── CJUIKitBaseScrollViewController.m │ │ │ ├── TabBar │ │ │ │ ├── CJUIKitBaseTabBarViewController.h │ │ │ │ ├── CJUIKitBaseTabBarViewController.m │ │ │ │ ├── Model │ │ │ │ │ ├── CQDMTabBarModel.h │ │ │ │ │ └── CQDMTabBarModel.m │ │ │ │ └── Resources │ │ │ │ │ ├── icons8-calendar.png │ │ │ │ │ ├── icons8-folder.png │ │ │ │ │ ├── icons8-home.png │ │ │ │ │ ├── icons8-menu.png │ │ │ │ │ └── icons8-settings.png │ │ │ ├── TableView │ │ │ │ ├── CJUIKitBaseHomeViewController.h │ │ │ │ └── CJUIKitBaseHomeViewController.m │ │ │ └── TextView │ │ │ │ ├── CJUIKitBaseBigTextViewController.h │ │ │ │ ├── CJUIKitBaseBigTextViewController.m │ │ │ │ ├── CJUIKitBaseTextViewController.h │ │ │ │ ├── CJUIKitBaseTextViewController.m │ │ │ │ ├── Model │ │ │ │ ├── CJDealTextModel.h │ │ │ │ ├── CJDealTextModel.m │ │ │ │ ├── CJDealTextModelFactory.h │ │ │ │ ├── CJDealTextModelFactory.m │ │ │ │ ├── CQDMSectionDataModel+CJDealTextModel.h │ │ │ │ └── CQDMSectionDataModel+CJDealTextModel.m │ │ │ │ └── View │ │ │ │ ├── CJValidateStringBigTableViewCell.h │ │ │ │ ├── CJValidateStringBigTableViewCell.m │ │ │ │ ├── CJValidateStringTableViewCell.h │ │ │ │ └── CJValidateStringTableViewCell.m │ │ ├── Demo_DataSourceAndDelegate │ │ │ ├── CQTSRipeBaseCollectionViewDataSource.h │ │ │ ├── CQTSRipeBaseCollectionViewDataSource.m │ │ │ ├── CQTSRipeBaseCollectionViewDelegate.h │ │ │ ├── CQTSRipeBaseCollectionViewDelegate.m │ │ │ ├── CQTSRipeSectionDataUtil.h │ │ │ └── CQTSRipeSectionDataUtil.m │ │ ├── Demo_Resource │ │ │ ├── CQTSPhotoUtil.h │ │ │ ├── CQTSPhotoUtil.m │ │ │ ├── CQTSResourceEnum.h │ │ │ ├── CQTSResourceUtil.h │ │ │ ├── CQTSResourceUtil.m │ │ │ ├── CQTSSandboxFileUtil.h │ │ │ ├── CQTSSandboxFileUtil.m │ │ │ ├── CQTSSandboxPathUtil.h │ │ │ ├── CQTSSandboxPathUtil.m │ │ │ ├── IconDataModel │ │ │ │ ├── CQTSIconDataModel.h │ │ │ │ ├── CQTSIconDataModel.m │ │ │ │ ├── CQTSIconsUtil.h │ │ │ │ └── CQTSIconsUtil.m │ │ │ ├── LocDataModel │ │ │ │ ├── CQTSLocImageDataModel.h │ │ │ │ ├── CQTSLocImageDataModel.m │ │ │ │ ├── CQTSLocImagesUtil.h │ │ │ │ └── CQTSLocImagesUtil.m │ │ │ ├── NetDataModel │ │ │ │ ├── CQTSNetImageDataModel.h │ │ │ │ ├── CQTSNetImageDataModel.m │ │ │ │ ├── CQTSNetImagesUtil.h │ │ │ │ └── CQTSNetImagesUtil.m │ │ │ └── String │ │ │ │ ├── CJUIKitRandomUtil.h │ │ │ │ └── CJUIKitRandomUtil.m │ │ ├── Demo_RipeView │ │ │ ├── CQTSRipeButton.h │ │ │ ├── CQTSRipeButton.m │ │ │ ├── CQTSRipeTableView.h │ │ │ ├── CQTSRipeTableView.m │ │ │ └── RipeCollectionView │ │ │ │ ├── CQTSRipeButtonCollectionView.h │ │ │ │ ├── CQTSRipeButtonCollectionView.m │ │ │ │ ├── CQTSRipeButtonCollectionViewCell.h │ │ │ │ ├── CQTSRipeButtonCollectionViewCell.m │ │ │ │ ├── CQTSRipeImageCollectionView.h │ │ │ │ ├── CQTSRipeImageCollectionView.m │ │ │ │ ├── CQTSRipeImageCollectionViewCell.h │ │ │ │ └── CQTSRipeImageCollectionViewCell.m │ │ └── Helper │ │ │ ├── NSError+CQTSErrorString.h │ │ │ ├── NSError+CQTSErrorString.m │ │ │ ├── UIImage+CQDemoKit.h │ │ │ └── UIImage+CQDemoKit.m │ ├── LICENSE │ └── README.md │ ├── Headers │ ├── Private │ │ ├── AFNetworking │ │ │ └── AFNetworkReachabilityManager.h │ │ ├── CJBaseEffectKit │ │ │ ├── CJScaleHeadView.h │ │ │ ├── LEOHeaderView.h │ │ │ └── MyUserInfoScaleHeadView.h │ │ ├── CJBaseHelper │ │ │ ├── AppInfoCJHelper.h │ │ │ ├── AuthorizationCJHelper.h │ │ │ ├── CJDateModel.h │ │ │ ├── DeviceCJHelper.h │ │ │ ├── HookCJHelper.h │ │ │ ├── NSCalendarCJHelper.h │ │ │ ├── NSDateFormatterCJHelper.h │ │ │ ├── NSObjectCJHelper.h │ │ │ ├── NSOperationQueueCJHelper.h │ │ │ ├── ServerSensitiveCJHelper.h │ │ │ ├── ServerTimeCJHelper.h │ │ │ ├── UIViewCJHelper.h │ │ │ ├── UIViewControllerCJHelper.h │ │ │ └── WebCJHelper.h │ │ ├── CJBaseUIKit │ │ │ ├── CJAdsorbModel.h │ │ │ ├── CJBadgeButton.h │ │ │ ├── CJBaseTableViewCell.h │ │ │ ├── CJBaseUISlider.h │ │ │ ├── CJButton.h │ │ │ ├── CJDefaultToolbar.h │ │ │ ├── CJExtraTextTextField.h │ │ │ ├── CJImageTrimmedModel.h │ │ │ ├── CJKeyboardAvoidingScrollView.h │ │ │ ├── CJKeyboardAvoidingTableView.h │ │ │ ├── CJLabel.h │ │ │ ├── CJPlayerSlider.h │ │ │ ├── CJRangeSliderControl.h │ │ │ ├── CJSlider.h │ │ │ ├── CJSliderControl.h │ │ │ ├── CJSliderPopover.h │ │ │ ├── CJSliderThumb.h │ │ │ ├── CJSubStringUtil.h │ │ │ ├── CJSwitchSlider.h │ │ │ ├── CJSwitchSliderStatusModel.h │ │ │ ├── CJTableViewHeaderFooterView.h │ │ │ ├── CJTextField.h │ │ │ ├── CJTextFieldDelegate.h │ │ │ ├── CJTextView.h │ │ │ ├── CJTextViewDelegate.h │ │ │ ├── CJUIKit.h │ │ │ ├── CJUIKitConstant.h │ │ │ ├── UIButton+CJMoreProperty.h │ │ │ ├── UIButton+CJStructure.h │ │ │ ├── UIColor+CJHex.h │ │ │ ├── UIImage+CJBase64.h │ │ │ ├── UIImage+CJBlur.h │ │ │ ├── UIImage+CJChangeColor.h │ │ │ ├── UIImage+CJCreate.h │ │ │ ├── UIImage+CJFixOrientation.h │ │ │ ├── UIImage+CJMakeCircle.h │ │ │ ├── UIImage+CJRotateAngle.h │ │ │ ├── UIImage+CJSplitImageIntoTwoParts.h │ │ │ ├── UIImage+CJTransformSize.h │ │ │ ├── UIImageCJCategory.h │ │ │ ├── UIImageCJCompressHelper.h │ │ │ ├── UIImageCJCutHelper.h │ │ │ ├── UINavigationBar+CJChangeBG.h │ │ │ ├── UIScrollView+CJKeyboardAvoiding.h │ │ │ ├── UISearchBar+CJAddInputAccessoryView.h │ │ │ ├── UITextField+CJAddInputAccessoryView.h │ │ │ ├── UITextField+CJBlock.h │ │ │ ├── UITextField+CJPadding.h │ │ │ ├── UITextField+CJSelectedTextRange.h │ │ │ ├── UITextField+CJTextChangeBlock.h │ │ │ ├── UITextFieldCJCategory.h │ │ │ ├── UITextInputChangeResultModel.h │ │ │ ├── UITextInputCursorCJHelper.h │ │ │ ├── UITextInputHeightCJHelper.h │ │ │ ├── UITextInputLimitCJHelper.h │ │ │ ├── UITextView+CJBlock.h │ │ │ ├── UITextView+CJVerticalCenter.h │ │ │ ├── UIView+CJAnimation.h │ │ │ ├── UIView+CJAutoMoveUp.h │ │ │ ├── UIView+CJDragAction.h │ │ │ ├── UIView+CJExclusiveTouch.h │ │ │ ├── UIView+CJGestureRecognizer.h │ │ │ ├── UIView+CJPanAction.h │ │ │ ├── UIView+CJRounderCorner.h │ │ │ ├── UIView+CJShake.h │ │ │ ├── UIViewCJCategory.h │ │ │ ├── UIViewController+CJCustomBackBarButtonItem.h │ │ │ ├── UIViewController+CJSystemBackButtonHandler.h │ │ │ ├── UIViewController+CJSystemComposeView.h │ │ │ └── UIWindow+CJSnapshot.h │ │ ├── CJBaseUtil │ │ │ ├── CJAppLastLaunchInfo.h │ │ │ ├── CJAppLastLaunchInfoManager.h │ │ │ ├── CJAppLastUser.h │ │ │ ├── CJAppLastUserManager.h │ │ │ ├── CJAppLastUtil.h │ │ │ ├── CJCallUtil.h │ │ │ ├── CJDataAllUtil.h │ │ │ ├── CJDataUtil+CJSectionDataModel.h │ │ │ ├── CJDataUtil+NormalSearch.h │ │ │ ├── CJDataUtil+SortCategory.h │ │ │ ├── CJDataUtil+SortOrder.h │ │ │ ├── CJDataUtil+Value.h │ │ │ ├── CJDataUtil.h │ │ │ ├── CJDateOtherUtil.h │ │ │ ├── CJIndentedStringUtil.h │ │ │ ├── CJKeyboardUtil.h │ │ │ ├── CJLaunchImageUtil.h │ │ │ ├── CJLocationChangeManager.h │ │ │ ├── CJLocationChangeModel.h │ │ │ ├── CJModuleManager.h │ │ │ ├── CJModuleModel.h │ │ │ ├── CJPinyinHelper.h │ │ │ ├── CJQRCodeUtil.h │ │ │ ├── CJRealtimeSearchUtil.h │ │ │ ├── CJSearchResult.h │ │ │ ├── CJSectionDataModel.h │ │ │ ├── CJSortedCategoryResult.h │ │ │ ├── CJSuspendWindowManager.h │ │ │ ├── CJTimerManager.h │ │ │ ├── CJTimerModel.h │ │ │ └── NSObject+CJSearchProperty.h │ │ ├── CJFile │ │ │ ├── CJFileManager+CalculateFileSize.h │ │ │ ├── CJFileManager+DeleteCleanFile.h │ │ │ ├── CJFileManager+GetCreatePath.h │ │ │ ├── CJFileManager+SaveFileData.h │ │ │ ├── CJFileManager.h │ │ │ └── CJPathFileModel.h │ │ ├── CJFoundation │ │ │ ├── NSDictionary+CJConvert.h │ │ │ ├── NSJSONSerialization+CJCategory.h │ │ │ ├── NSString+CJAttributedString.h │ │ │ ├── NSString+CJCategory.h │ │ │ ├── NSString+CJCut.h │ │ │ ├── NSString+CJEncoding.h │ │ │ ├── NSString+CJEncryption.h │ │ │ ├── NSString+CJTextLength.h │ │ │ ├── NSString+CJTextSize.h │ │ │ ├── NSString+CJTextSizeInView.h │ │ │ └── NSString+CJValidate.h │ │ ├── CJPopupView │ │ │ ├── CJDrawRectUtil.h │ │ │ ├── CJPopoverListView.h │ │ │ └── UIButton+CJPopoverListView.h │ │ ├── CQDemoKit │ │ │ ├── CJDealTextModel.h │ │ │ ├── CJDealTextModelFactory.h │ │ │ ├── CJUIKitAlertUtil.h │ │ │ ├── CJUIKitBaseBigTextViewController.h │ │ │ ├── CJUIKitBaseCollectionHomeViewController.h │ │ │ ├── CJUIKitBaseHomeViewController.h │ │ │ ├── CJUIKitBaseScrollViewController.h │ │ │ ├── CJUIKitBaseTabBarViewController.h │ │ │ ├── CJUIKitBaseTextViewController.h │ │ │ ├── CJUIKitBaseViewController.h │ │ │ ├── CJUIKitCollectionViewCell.h │ │ │ ├── CJUIKitCollectionViewHeader.h │ │ │ ├── CJUIKitRandomUtil.h │ │ │ ├── CJUIKitToastUtil.h │ │ │ ├── CJValidateStringBigTableViewCell.h │ │ │ ├── CJValidateStringTableViewCell.h │ │ │ ├── CQDMModuleModel.h │ │ │ ├── CQDMSectionDataModel+CJDealTextModel.h │ │ │ ├── CQDMSectionDataModel.h │ │ │ ├── CQDMTabBarModel.h │ │ │ ├── CQTSBorderStateButton.h │ │ │ ├── CQTSButtonFactory.h │ │ │ ├── CQTSContainerViewFactory.h │ │ │ ├── CQTSIconDataModel.h │ │ │ ├── CQTSIconsUtil.h │ │ │ ├── CQTSImageLoader.h │ │ │ ├── CQTSLocImageDataModel.h │ │ │ ├── CQTSLocImagesUtil.h │ │ │ ├── CQTSNetImageDataModel.h │ │ │ ├── CQTSNetImagesUtil.h │ │ │ ├── CQTSPhotoUtil.h │ │ │ ├── CQTSResourceEnum.h │ │ │ ├── CQTSResourceUtil.h │ │ │ ├── CQTSRipeBaseCollectionViewDataSource.h │ │ │ ├── CQTSRipeBaseCollectionViewDelegate.h │ │ │ ├── CQTSRipeButton.h │ │ │ ├── CQTSRipeButtonCollectionView.h │ │ │ ├── CQTSRipeButtonCollectionViewCell.h │ │ │ ├── CQTSRipeImageCollectionView.h │ │ │ ├── CQTSRipeImageCollectionViewCell.h │ │ │ ├── CQTSRipeSectionDataUtil.h │ │ │ ├── CQTSRipeTableView.h │ │ │ ├── CQTSSandboxFileUtil.h │ │ │ ├── CQTSSandboxPathUtil.h │ │ │ ├── CQTSSuspendButtonRootViewController.h │ │ │ ├── CQTSSuspendWindow.h │ │ │ ├── CQTSSuspendWindowFactory.h │ │ │ ├── CQTSSwitchViewFactory.h │ │ │ ├── NSError+CQTSErrorString.h │ │ │ ├── UIButton+CQTSMoreProperty.h │ │ │ ├── UIImage+CQDemoKit.h │ │ │ ├── UIImageView+CQTSBaseUtil.h │ │ │ ├── UISwitch+CQTSMoreProperty.h │ │ │ └── UIView+CQAuxiliaryText.h │ │ ├── IQKeyboardManager │ │ │ ├── IQBarButtonItem.h │ │ │ ├── IQKeyboardManager.h │ │ │ ├── IQKeyboardManagerConstants.h │ │ │ ├── IQKeyboardManagerConstantsInternal.h │ │ │ ├── IQKeyboardReturnKeyHandler.h │ │ │ ├── IQNSArray+Sort.h │ │ │ ├── IQPreviousNextView.h │ │ │ ├── IQTextView.h │ │ │ ├── IQTitleBarButtonItem.h │ │ │ ├── IQToolbar.h │ │ │ ├── IQUIScrollView+Additions.h │ │ │ ├── IQUITextFieldView+Additions.h │ │ │ ├── IQUIView+Hierarchy.h │ │ │ ├── IQUIView+IQKeyboardToolbar.h │ │ │ └── IQUIViewController+Additions.h │ │ ├── MJExtension │ │ │ ├── MJExtension.h │ │ │ ├── MJExtensionConst.h │ │ │ ├── MJFoundation.h │ │ │ ├── MJProperty.h │ │ │ ├── MJPropertyKey.h │ │ │ ├── MJPropertyType.h │ │ │ ├── NSObject+MJClass.h │ │ │ ├── NSObject+MJCoding.h │ │ │ ├── NSObject+MJKeyValue.h │ │ │ ├── NSObject+MJProperty.h │ │ │ └── NSString+MJExtension.h │ │ ├── Mantle │ │ │ ├── MTLEXTKeyPathCoding.h │ │ │ ├── MTLEXTRuntimeExtensions.h │ │ │ ├── MTLEXTScope.h │ │ │ ├── MTLJSONAdapter.h │ │ │ ├── MTLMetamacros.h │ │ │ ├── MTLModel+NSCoding.h │ │ │ ├── MTLModel.h │ │ │ ├── MTLReflection.h │ │ │ ├── MTLTransformerErrorHandling.h │ │ │ ├── MTLValueTransformer.h │ │ │ ├── Mantle.h │ │ │ ├── NSArray+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ │ ├── NSError+MTLModelException.h │ │ │ ├── NSObject+MTLComparisonAdditions.h │ │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ │ └── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ ├── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ ├── View+MASShorthandAdditions.h │ │ │ └── ViewController+MASAdditions.h │ │ ├── PinYin4Objc │ │ │ ├── ChineseToPinyinResource.h │ │ │ ├── HanyuPinyinOutputFormat.h │ │ │ ├── NSString+PinYin4Cocoa.h │ │ │ ├── PinYin4Objc.h │ │ │ ├── PinyinFormatter.h │ │ │ └── PinyinHelper.h │ │ ├── SAMKeychain │ │ │ ├── SAMKeychain.h │ │ │ └── SAMKeychainQuery.h │ │ ├── Shimmer │ │ │ ├── FBShimmering.h │ │ │ ├── FBShimmeringLayer.h │ │ │ └── FBShimmeringView.h │ │ ├── UINavigation-SXFixSpace │ │ │ └── UINavigationSXFixSpace.h │ │ └── YYText │ │ │ ├── NSAttributedString+YYText.h │ │ │ ├── NSParagraphStyle+YYText.h │ │ │ ├── UIPasteboard+YYText.h │ │ │ ├── UIView+YYText.h │ │ │ ├── YYLabel.h │ │ │ ├── YYText.h │ │ │ ├── YYTextArchiver.h │ │ │ ├── YYTextAsyncLayer.h │ │ │ ├── YYTextAttribute.h │ │ │ ├── YYTextContainerView.h │ │ │ ├── YYTextDebugOption.h │ │ │ ├── YYTextEffectWindow.h │ │ │ ├── YYTextInput.h │ │ │ ├── YYTextKeyboardManager.h │ │ │ ├── YYTextLayout.h │ │ │ ├── YYTextLine.h │ │ │ ├── YYTextMagnifier.h │ │ │ ├── YYTextParser.h │ │ │ ├── YYTextRubyAnnotation.h │ │ │ ├── YYTextRunDelegate.h │ │ │ ├── YYTextSelectionView.h │ │ │ ├── YYTextTransaction.h │ │ │ ├── YYTextUtilities.h │ │ │ ├── YYTextView.h │ │ │ └── YYTextWeakProxy.h │ └── Public │ │ ├── AFNetworking │ │ └── AFNetworkReachabilityManager.h │ │ ├── CJBaseEffectKit │ │ ├── CJScaleHeadView.h │ │ ├── LEOHeaderView.h │ │ └── MyUserInfoScaleHeadView.h │ │ ├── CJBaseHelper │ │ ├── AppInfoCJHelper.h │ │ ├── AuthorizationCJHelper.h │ │ ├── CJDateModel.h │ │ ├── DeviceCJHelper.h │ │ ├── HookCJHelper.h │ │ ├── NSCalendarCJHelper.h │ │ ├── NSDateFormatterCJHelper.h │ │ ├── NSObjectCJHelper.h │ │ ├── NSOperationQueueCJHelper.h │ │ ├── ServerSensitiveCJHelper.h │ │ ├── ServerTimeCJHelper.h │ │ ├── UIViewCJHelper.h │ │ ├── UIViewControllerCJHelper.h │ │ └── WebCJHelper.h │ │ ├── CJBaseUIKit │ │ ├── CJAdsorbModel.h │ │ ├── CJBadgeButton.h │ │ ├── CJBaseTableViewCell.h │ │ ├── CJBaseUISlider.h │ │ ├── CJButton.h │ │ ├── CJDefaultToolbar.h │ │ ├── CJExtraTextTextField.h │ │ ├── CJImageTrimmedModel.h │ │ ├── CJKeyboardAvoidingScrollView.h │ │ ├── CJKeyboardAvoidingTableView.h │ │ ├── CJLabel.h │ │ ├── CJPlayerSlider.h │ │ ├── CJRangeSliderControl.h │ │ ├── CJSlider.h │ │ ├── CJSliderControl.h │ │ ├── CJSliderPopover.h │ │ ├── CJSliderThumb.h │ │ ├── CJSubStringUtil.h │ │ ├── CJSwitchSlider.h │ │ ├── CJSwitchSliderStatusModel.h │ │ ├── CJTableViewHeaderFooterView.h │ │ ├── CJTextField.h │ │ ├── CJTextFieldDelegate.h │ │ ├── CJTextView.h │ │ ├── CJTextViewDelegate.h │ │ ├── CJUIKit.h │ │ ├── CJUIKitConstant.h │ │ ├── UIButton+CJMoreProperty.h │ │ ├── UIButton+CJStructure.h │ │ ├── UIColor+CJHex.h │ │ ├── UIImage+CJBase64.h │ │ ├── UIImage+CJBlur.h │ │ ├── UIImage+CJChangeColor.h │ │ ├── UIImage+CJCreate.h │ │ ├── UIImage+CJFixOrientation.h │ │ ├── UIImage+CJMakeCircle.h │ │ ├── UIImage+CJRotateAngle.h │ │ ├── UIImage+CJSplitImageIntoTwoParts.h │ │ ├── UIImage+CJTransformSize.h │ │ ├── UIImageCJCategory.h │ │ ├── UIImageCJCompressHelper.h │ │ ├── UIImageCJCutHelper.h │ │ ├── UINavigationBar+CJChangeBG.h │ │ ├── UIScrollView+CJKeyboardAvoiding.h │ │ ├── UISearchBar+CJAddInputAccessoryView.h │ │ ├── UITextField+CJAddInputAccessoryView.h │ │ ├── UITextField+CJBlock.h │ │ ├── UITextField+CJPadding.h │ │ ├── UITextField+CJSelectedTextRange.h │ │ ├── UITextField+CJTextChangeBlock.h │ │ ├── UITextFieldCJCategory.h │ │ ├── UITextInputChangeResultModel.h │ │ ├── UITextInputCursorCJHelper.h │ │ ├── UITextInputHeightCJHelper.h │ │ ├── UITextInputLimitCJHelper.h │ │ ├── UITextView+CJBlock.h │ │ ├── UITextView+CJVerticalCenter.h │ │ ├── UIView+CJAnimation.h │ │ ├── UIView+CJAutoMoveUp.h │ │ ├── UIView+CJDragAction.h │ │ ├── UIView+CJExclusiveTouch.h │ │ ├── UIView+CJGestureRecognizer.h │ │ ├── UIView+CJPanAction.h │ │ ├── UIView+CJRounderCorner.h │ │ ├── UIView+CJShake.h │ │ ├── UIViewCJCategory.h │ │ ├── UIViewController+CJCustomBackBarButtonItem.h │ │ ├── UIViewController+CJSystemBackButtonHandler.h │ │ ├── UIViewController+CJSystemComposeView.h │ │ └── UIWindow+CJSnapshot.h │ │ ├── CJBaseUtil │ │ ├── CJAppLastLaunchInfo.h │ │ ├── CJAppLastLaunchInfoManager.h │ │ ├── CJAppLastUser.h │ │ ├── CJAppLastUserManager.h │ │ ├── CJAppLastUtil.h │ │ ├── CJCallUtil.h │ │ ├── CJDataAllUtil.h │ │ ├── CJDataUtil+CJSectionDataModel.h │ │ ├── CJDataUtil+NormalSearch.h │ │ ├── CJDataUtil+SortCategory.h │ │ ├── CJDataUtil+SortOrder.h │ │ ├── CJDataUtil+Value.h │ │ ├── CJDataUtil.h │ │ ├── CJDateOtherUtil.h │ │ ├── CJIndentedStringUtil.h │ │ ├── CJKeyboardUtil.h │ │ ├── CJLaunchImageUtil.h │ │ ├── CJLocationChangeManager.h │ │ ├── CJLocationChangeModel.h │ │ ├── CJModuleManager.h │ │ ├── CJModuleModel.h │ │ ├── CJPinyinHelper.h │ │ ├── CJQRCodeUtil.h │ │ ├── CJRealtimeSearchUtil.h │ │ ├── CJSearchResult.h │ │ ├── CJSectionDataModel.h │ │ ├── CJSortedCategoryResult.h │ │ ├── CJSuspendWindowManager.h │ │ ├── CJTimerManager.h │ │ ├── CJTimerModel.h │ │ └── NSObject+CJSearchProperty.h │ │ ├── CJFile │ │ ├── CJFileManager+CalculateFileSize.h │ │ ├── CJFileManager+DeleteCleanFile.h │ │ ├── CJFileManager+GetCreatePath.h │ │ ├── CJFileManager+SaveFileData.h │ │ ├── CJFileManager.h │ │ └── CJPathFileModel.h │ │ ├── CJFoundation │ │ ├── NSDictionary+CJConvert.h │ │ ├── NSJSONSerialization+CJCategory.h │ │ ├── NSString+CJAttributedString.h │ │ ├── NSString+CJCategory.h │ │ ├── NSString+CJCut.h │ │ ├── NSString+CJEncoding.h │ │ ├── NSString+CJEncryption.h │ │ ├── NSString+CJTextLength.h │ │ ├── NSString+CJTextSize.h │ │ ├── NSString+CJTextSizeInView.h │ │ └── NSString+CJValidate.h │ │ ├── CJPopupView │ │ ├── CJDrawRectUtil.h │ │ ├── CJPopoverListView.h │ │ └── UIButton+CJPopoverListView.h │ │ ├── CQDemoKit │ │ ├── CJDealTextModel.h │ │ ├── CJDealTextModelFactory.h │ │ ├── CJUIKitAlertUtil.h │ │ ├── CJUIKitBaseBigTextViewController.h │ │ ├── CJUIKitBaseCollectionHomeViewController.h │ │ ├── CJUIKitBaseHomeViewController.h │ │ ├── CJUIKitBaseScrollViewController.h │ │ ├── CJUIKitBaseTabBarViewController.h │ │ ├── CJUIKitBaseTextViewController.h │ │ ├── CJUIKitBaseViewController.h │ │ ├── CJUIKitCollectionViewCell.h │ │ ├── CJUIKitCollectionViewHeader.h │ │ ├── CJUIKitRandomUtil.h │ │ ├── CJUIKitToastUtil.h │ │ ├── CJValidateStringBigTableViewCell.h │ │ ├── CJValidateStringTableViewCell.h │ │ ├── CQDMModuleModel.h │ │ ├── CQDMSectionDataModel+CJDealTextModel.h │ │ ├── CQDMSectionDataModel.h │ │ ├── CQDMTabBarModel.h │ │ ├── CQTSBorderStateButton.h │ │ ├── CQTSButtonFactory.h │ │ ├── CQTSContainerViewFactory.h │ │ ├── CQTSIconDataModel.h │ │ ├── CQTSIconsUtil.h │ │ ├── CQTSImageLoader.h │ │ ├── CQTSLocImageDataModel.h │ │ ├── CQTSLocImagesUtil.h │ │ ├── CQTSNetImageDataModel.h │ │ ├── CQTSNetImagesUtil.h │ │ ├── CQTSPhotoUtil.h │ │ ├── CQTSResourceEnum.h │ │ ├── CQTSResourceUtil.h │ │ ├── CQTSRipeBaseCollectionViewDataSource.h │ │ ├── CQTSRipeBaseCollectionViewDelegate.h │ │ ├── CQTSRipeButton.h │ │ ├── CQTSRipeButtonCollectionView.h │ │ ├── CQTSRipeButtonCollectionViewCell.h │ │ ├── CQTSRipeImageCollectionView.h │ │ ├── CQTSRipeImageCollectionViewCell.h │ │ ├── CQTSRipeSectionDataUtil.h │ │ ├── CQTSRipeTableView.h │ │ ├── CQTSSandboxFileUtil.h │ │ ├── CQTSSandboxPathUtil.h │ │ ├── CQTSSuspendButtonRootViewController.h │ │ ├── CQTSSuspendWindow.h │ │ ├── CQTSSuspendWindowFactory.h │ │ ├── CQTSSwitchViewFactory.h │ │ ├── NSError+CQTSErrorString.h │ │ ├── UIButton+CQTSMoreProperty.h │ │ ├── UIImage+CQDemoKit.h │ │ ├── UIImageView+CQTSBaseUtil.h │ │ ├── UISwitch+CQTSMoreProperty.h │ │ └── UIView+CQAuxiliaryText.h │ │ ├── IQKeyboardManager │ │ ├── IQBarButtonItem.h │ │ ├── IQKeyboardManager.h │ │ ├── IQKeyboardManagerConstants.h │ │ ├── IQKeyboardReturnKeyHandler.h │ │ ├── IQPreviousNextView.h │ │ ├── IQTextView.h │ │ ├── IQTitleBarButtonItem.h │ │ ├── IQToolbar.h │ │ ├── IQUIScrollView+Additions.h │ │ ├── IQUITextFieldView+Additions.h │ │ ├── IQUIView+Hierarchy.h │ │ ├── IQUIView+IQKeyboardToolbar.h │ │ └── IQUIViewController+Additions.h │ │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJFoundation.h │ │ ├── MJProperty.h │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyType.h │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJProperty.h │ │ └── NSString+MJExtension.h │ │ ├── Mantle │ │ ├── MTLJSONAdapter.h │ │ ├── MTLModel+NSCoding.h │ │ ├── MTLModel.h │ │ ├── MTLReflection.h │ │ ├── MTLTransformerErrorHandling.h │ │ ├── MTLValueTransformer.h │ │ ├── Mantle.h │ │ ├── NSArray+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ ├── NSError+MTLModelException.h │ │ ├── NSObject+MTLComparisonAdditions.h │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ └── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ ├── View+MASShorthandAdditions.h │ │ └── ViewController+MASAdditions.h │ │ ├── PinYin4Objc │ │ ├── ChineseToPinyinResource.h │ │ ├── HanyuPinyinOutputFormat.h │ │ ├── NSString+PinYin4Cocoa.h │ │ ├── PinYin4Objc.h │ │ ├── PinyinFormatter.h │ │ └── PinyinHelper.h │ │ ├── SAMKeychain │ │ ├── SAMKeychain.h │ │ └── SAMKeychainQuery.h │ │ ├── Shimmer │ │ ├── FBShimmering.h │ │ ├── FBShimmeringLayer.h │ │ └── FBShimmeringView.h │ │ ├── UINavigation-SXFixSpace │ │ └── UINavigationSXFixSpace.h │ │ └── YYText │ │ ├── NSAttributedString+YYText.h │ │ ├── NSParagraphStyle+YYText.h │ │ ├── UIPasteboard+YYText.h │ │ ├── UIView+YYText.h │ │ ├── YYLabel.h │ │ ├── YYText.h │ │ ├── YYTextArchiver.h │ │ ├── YYTextAsyncLayer.h │ │ ├── YYTextAttribute.h │ │ ├── YYTextContainerView.h │ │ ├── YYTextDebugOption.h │ │ ├── YYTextEffectWindow.h │ │ ├── YYTextInput.h │ │ ├── YYTextKeyboardManager.h │ │ ├── YYTextLayout.h │ │ ├── YYTextLine.h │ │ ├── YYTextMagnifier.h │ │ ├── YYTextParser.h │ │ ├── YYTextRubyAnnotation.h │ │ ├── YYTextRunDelegate.h │ │ ├── YYTextSelectionView.h │ │ ├── YYTextTransaction.h │ │ ├── YYTextUtilities.h │ │ ├── YYTextView.h │ │ └── YYTextWeakProxy.h │ ├── IQKeyboardManager │ ├── IQKeyboardManager │ │ ├── Categories │ │ │ ├── IQNSArray+Sort.h │ │ │ ├── IQNSArray+Sort.m │ │ │ ├── IQUIScrollView+Additions.h │ │ │ ├── IQUIScrollView+Additions.m │ │ │ ├── IQUITextFieldView+Additions.h │ │ │ ├── IQUITextFieldView+Additions.m │ │ │ ├── IQUIView+Hierarchy.h │ │ │ ├── IQUIView+Hierarchy.m │ │ │ ├── IQUIViewController+Additions.h │ │ │ └── IQUIViewController+Additions.m │ │ ├── Constants │ │ │ ├── IQKeyboardManagerConstants.h │ │ │ └── IQKeyboardManagerConstantsInternal.h │ │ ├── IQKeyboardManager.h │ │ ├── IQKeyboardManager.m │ │ ├── IQKeyboardReturnKeyHandler.h │ │ ├── IQKeyboardReturnKeyHandler.m │ │ ├── IQTextView │ │ │ ├── IQTextView.h │ │ │ └── IQTextView.m │ │ └── IQToolbar │ │ │ ├── IQBarButtonItem.h │ │ │ ├── IQBarButtonItem.m │ │ │ ├── IQPreviousNextView.h │ │ │ ├── IQPreviousNextView.m │ │ │ ├── IQTitleBarButtonItem.h │ │ │ ├── IQTitleBarButtonItem.m │ │ │ ├── IQToolbar.h │ │ │ ├── IQToolbar.m │ │ │ ├── IQUIView+IQKeyboardToolbar.h │ │ │ └── IQUIView+IQKeyboardToolbar.m │ ├── LICENSE.md │ └── README.md │ ├── Local Podspecs │ ├── CJBaseHelper.podspec.json │ ├── CJBaseTest.podspec.json │ ├── CJBaseUIKit.podspec.json │ ├── CJBaseUtil.podspec.json │ ├── CJFoundation.podspec.json │ └── CJMenuListKit.podspec.json │ ├── MJExtension │ ├── LICENSE │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJExtensionConst.m │ │ ├── MJFoundation.h │ │ ├── MJFoundation.m │ │ ├── MJProperty.h │ │ ├── MJProperty.m │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyKey.m │ │ ├── MJPropertyType.h │ │ ├── MJPropertyType.m │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJClass.m │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJCoding.m │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJKeyValue.m │ │ ├── NSObject+MJProperty.h │ │ ├── NSObject+MJProperty.m │ │ ├── NSString+MJExtension.h │ │ └── NSString+MJExtension.m │ └── README.md │ ├── Manifest.lock │ ├── Mantle │ ├── LICENSE.md │ ├── Mantle │ │ ├── MTLJSONAdapter.m │ │ ├── MTLModel+NSCoding.m │ │ ├── MTLModel.m │ │ ├── MTLReflection.h │ │ ├── MTLReflection.m │ │ ├── MTLTransformerErrorHandling.m │ │ ├── MTLValueTransformer.m │ │ ├── NSArray+MTLManipulationAdditions.m │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ ├── NSDictionary+MTLJSONKeyPath.m │ │ ├── NSDictionary+MTLManipulationAdditions.m │ │ ├── NSDictionary+MTLMappingAdditions.m │ │ ├── NSError+MTLModelException.h │ │ ├── NSError+MTLModelException.m │ │ ├── NSObject+MTLComparisonAdditions.m │ │ ├── NSValueTransformer+MTLInversionAdditions.m │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.m │ │ ├── extobjc │ │ │ ├── MTLEXTRuntimeExtensions.m │ │ │ ├── MTLEXTScope.m │ │ │ └── include │ │ │ │ ├── MTLEXTKeyPathCoding.h │ │ │ │ ├── MTLEXTRuntimeExtensions.h │ │ │ │ ├── MTLEXTScope.h │ │ │ │ └── MTLMetamacros.h │ │ └── include │ │ │ ├── MTLJSONAdapter.h │ │ │ ├── MTLModel+NSCoding.h │ │ │ ├── MTLModel.h │ │ │ ├── MTLTransformerErrorHandling.h │ │ │ ├── MTLValueTransformer.h │ │ │ ├── Mantle.h │ │ │ ├── NSArray+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ │ ├── NSObject+MTLComparisonAdditions.h │ │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ │ └── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ └── README.md │ ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md │ ├── PinYin4Objc │ ├── LICENSE │ ├── PinYin4Objc │ │ ├── Classes │ │ │ ├── ChineseToPinyinResource.h │ │ │ ├── ChineseToPinyinResource.m │ │ │ ├── HanyuPinyinOutputFormat.h │ │ │ ├── HanyuPinyinOutputFormat.m │ │ │ ├── NSString+PinYin4Cocoa.h │ │ │ ├── NSString+PinYin4Cocoa.m │ │ │ ├── PinYin4Objc.h │ │ │ ├── PinyinFormatter.h │ │ │ ├── PinyinFormatter.m │ │ │ ├── PinyinHelper.h │ │ │ └── PinyinHelper.m │ │ └── Resources │ │ │ └── unicode_to_hanyu_pinyin.txt │ └── README.md │ ├── Pods.xcodeproj │ └── project.pbxproj │ ├── SAMKeychain │ ├── LICENSE │ ├── Readme.markdown │ ├── Sources │ │ ├── SAMKeychain.h │ │ ├── SAMKeychain.m │ │ ├── SAMKeychainQuery.h │ │ └── SAMKeychainQuery.m │ └── Support │ │ └── SAMKeychain.bundle │ │ └── en.lproj │ │ └── SAMKeychain.strings │ ├── Shimmer │ ├── FBShimmering │ │ ├── FBShimmering.h │ │ ├── FBShimmeringLayer.h │ │ ├── FBShimmeringLayer.m │ │ ├── FBShimmeringView.h │ │ └── FBShimmeringView.m │ ├── LICENSE │ └── README.md │ ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ ├── AFNetworking.debug.xcconfig │ │ └── AFNetworking.release.xcconfig │ ├── CJBaseEffectKit │ │ ├── CJBaseEffectKit-dummy.m │ │ ├── CJBaseEffectKit-prefix.pch │ │ ├── CJBaseEffectKit.debug.xcconfig │ │ └── CJBaseEffectKit.release.xcconfig │ ├── CJBaseHelper │ │ ├── CJBaseHelper-dummy.m │ │ ├── CJBaseHelper-prefix.pch │ │ ├── CJBaseHelper.debug.xcconfig │ │ └── CJBaseHelper.release.xcconfig │ ├── CJBaseUIKit │ │ ├── CJBaseUIKit-dummy.m │ │ ├── CJBaseUIKit-prefix.pch │ │ ├── CJBaseUIKit.debug.xcconfig │ │ └── CJBaseUIKit.release.xcconfig │ ├── CJBaseUtil │ │ ├── CJBaseUtil-dummy.m │ │ ├── CJBaseUtil-prefix.pch │ │ ├── CJBaseUtil.debug.xcconfig │ │ └── CJBaseUtil.release.xcconfig │ ├── CJFile │ │ ├── CJFile-dummy.m │ │ ├── CJFile-prefix.pch │ │ ├── CJFile.debug.xcconfig │ │ └── CJFile.release.xcconfig │ ├── CJFoundation │ │ ├── CJFoundation-dummy.m │ │ ├── CJFoundation-prefix.pch │ │ ├── CJFoundation.debug.xcconfig │ │ └── CJFoundation.release.xcconfig │ ├── CJPopupView │ │ ├── CJPopupView-dummy.m │ │ ├── CJPopupView-prefix.pch │ │ ├── CJPopupView.debug.xcconfig │ │ └── CJPopupView.release.xcconfig │ ├── CQDemoKit │ │ ├── CQDemoKit-dummy.m │ │ ├── CQDemoKit-prefix.pch │ │ ├── CQDemoKit.debug.xcconfig │ │ └── CQDemoKit.release.xcconfig │ ├── IQKeyboardManager │ │ ├── IQKeyboardManager-dummy.m │ │ ├── IQKeyboardManager-prefix.pch │ │ ├── IQKeyboardManager.debug.xcconfig │ │ └── IQKeyboardManager.release.xcconfig │ ├── MJExtension │ │ ├── MJExtension-dummy.m │ │ ├── MJExtension-prefix.pch │ │ ├── MJExtension.debug.xcconfig │ │ └── MJExtension.release.xcconfig │ ├── Mantle │ │ ├── Mantle-dummy.m │ │ ├── Mantle-prefix.pch │ │ ├── Mantle.debug.xcconfig │ │ └── Mantle.release.xcconfig │ ├── Masonry │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ ├── Masonry.debug.xcconfig │ │ └── Masonry.release.xcconfig │ ├── PinYin4Objc │ │ ├── PinYin4Objc-dummy.m │ │ ├── PinYin4Objc-prefix.pch │ │ ├── PinYin4Objc.debug.xcconfig │ │ └── PinYin4Objc.release.xcconfig │ ├── Pods-CJUIKitDemo │ │ ├── Pods-CJUIKitDemo-Info.plist │ │ ├── Pods-CJUIKitDemo-acknowledgements.markdown │ │ ├── Pods-CJUIKitDemo-acknowledgements.plist │ │ ├── Pods-CJUIKitDemo-dummy.m │ │ ├── Pods-CJUIKitDemo-frameworks.sh │ │ ├── Pods-CJUIKitDemo-resources.sh │ │ ├── Pods-CJUIKitDemo-umbrella.h │ │ ├── Pods-CJUIKitDemo.debug.xcconfig │ │ ├── Pods-CJUIKitDemo.modulemap │ │ └── Pods-CJUIKitDemo.release.xcconfig │ ├── SAMKeychain │ │ ├── SAMKeychain-dummy.m │ │ ├── SAMKeychain-prefix.pch │ │ ├── SAMKeychain.debug.xcconfig │ │ └── SAMKeychain.release.xcconfig │ ├── Shimmer │ │ ├── Shimmer-dummy.m │ │ ├── Shimmer-prefix.pch │ │ ├── Shimmer.debug.xcconfig │ │ └── Shimmer.release.xcconfig │ ├── UINavigation-SXFixSpace │ │ ├── UINavigation-SXFixSpace-dummy.m │ │ ├── UINavigation-SXFixSpace-prefix.pch │ │ ├── UINavigation-SXFixSpace.debug.xcconfig │ │ └── UINavigation-SXFixSpace.release.xcconfig │ └── YYText │ │ ├── YYText-dummy.m │ │ ├── YYText-prefix.pch │ │ ├── YYText.debug.xcconfig │ │ └── YYText.release.xcconfig │ ├── UINavigation-SXFixSpace │ ├── LICENSE │ ├── README.md │ └── UINavigation-SXFixSpace │ │ ├── UINavigationSXFixSpace.h │ │ └── UINavigationSXFixSpace.m │ └── YYText │ ├── LICENSE │ ├── README.md │ └── YYText │ ├── Component │ ├── YYTextContainerView.h │ ├── YYTextContainerView.m │ ├── YYTextDebugOption.h │ ├── YYTextDebugOption.m │ ├── YYTextEffectWindow.h │ ├── YYTextEffectWindow.m │ ├── YYTextInput.h │ ├── YYTextInput.m │ ├── YYTextKeyboardManager.h │ ├── YYTextKeyboardManager.m │ ├── YYTextLayout.h │ ├── YYTextLayout.m │ ├── YYTextLine.h │ ├── YYTextLine.m │ ├── YYTextMagnifier.h │ ├── YYTextMagnifier.m │ ├── YYTextSelectionView.h │ └── YYTextSelectionView.m │ ├── String │ ├── YYTextArchiver.h │ ├── YYTextArchiver.m │ ├── YYTextAttribute.h │ ├── YYTextAttribute.m │ ├── YYTextParser.h │ ├── YYTextParser.m │ ├── YYTextRubyAnnotation.h │ ├── YYTextRubyAnnotation.m │ ├── YYTextRunDelegate.h │ └── YYTextRunDelegate.m │ ├── Utility │ ├── NSAttributedString+YYText.h │ ├── NSAttributedString+YYText.m │ ├── NSParagraphStyle+YYText.h │ ├── NSParagraphStyle+YYText.m │ ├── UIPasteboard+YYText.h │ ├── UIPasteboard+YYText.m │ ├── UIView+YYText.h │ ├── UIView+YYText.m │ ├── YYTextAsyncLayer.h │ ├── YYTextAsyncLayer.m │ ├── YYTextTransaction.h │ ├── YYTextTransaction.m │ ├── YYTextUtilities.h │ ├── YYTextUtilities.m │ ├── YYTextWeakProxy.h │ └── YYTextWeakProxy.m │ ├── YYLabel.h │ ├── YYLabel.m │ ├── YYText.h │ ├── YYTextView.h │ └── YYTextView.m ├── CJUIKitSwiftDemo ├── AppDelegate.swift ├── CJUIKit-Brdging-Header.h ├── SnapKitExtension │ ├── ConstrainArray+Extension.swift │ ├── ConstrainArray.swift │ └── ConstrainArrayDSL.swift └── ViewController.swift ├── HeaderZoomDemo ├── README.md ├── headerZoom.gif └── iOS-HeaderZoom │ ├── iOS-NavigationBar-Category.xcodeproj │ └── project.pbxproj │ └── iOS-NavigationBar-Category │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── DemoViewController.h │ ├── DemoViewController.m │ ├── Info.plist │ ├── LEOHeaderView │ ├── LEOHeaderView.h │ ├── LEOHeaderView.m │ ├── UINavigationBar+leoAdd.h │ ├── UINavigationBar+leoAdd.m │ ├── UIView+leoAdd.h │ └── UIView+leoAdd.m │ ├── ViewController.h │ ├── ViewController.m │ ├── background@2x.jpg │ ├── header@2x.jpg │ └── main.m ├── Icon.appiconset ├── 1024.png ├── 20pt@2x.png ├── 20pt@3x.png ├── 29pt@2x.png ├── 29pt@3x.png ├── 40pt@2x.png ├── 40pt@3x.png ├── 60pt@2x.png ├── 60pt@3x.png └── Contents.json ├── LICENSE ├── LaunchImage.launchimage ├── 1125_2436.png ├── 1242_2208.png ├── 1242_2688.png ├── 640_1136.png ├── 640_960.png ├── 750_1334.png ├── 828_1792.png └── Contents.json ├── LaunchImage.png ├── README.md ├── README ├── CJBaseTest.md ├── CJBaseUIKit_CJComplexUIKit.md ├── CJFoundation_CJBaseHelper_CJBaseUtil.md └── podspec的问题.md ├── Screenshots ├── example1.gif └── 分割图1.jpg ├── SwiftExtraCJHelper.md ├── SwiftExtraCJHelper.podspec ├── SwiftExtraCJHelper └── Base │ └── NSClassFromStringCJHelper.swift ├── icon.png ├── icon3.png ├── icon5.png └── 要deprecated的.podspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/.gitignore -------------------------------------------------------------------------------- /1.0.9YYKit中的YYText更新到YYText1.0.7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/1.0.9YYKit中的YYText更新到YYText1.0.7/LICENSE -------------------------------------------------------------------------------- /CJBaseHelper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseHelper.podspec -------------------------------------------------------------------------------- /CJBaseTest.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseTest.podspec -------------------------------------------------------------------------------- /CJBaseTest/Test/CJTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseTest/Test/CJTestCase.h -------------------------------------------------------------------------------- /CJBaseTest/Test/CJTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseTest/Test/CJTestCase.m -------------------------------------------------------------------------------- /CJBaseTest/UITest/CJUITestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseTest/UITest/CJUITestCase.h -------------------------------------------------------------------------------- /CJBaseTest/UITest/CJUITestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseTest/UITest/CJUITestCase.m -------------------------------------------------------------------------------- /CJBaseUIKit-Swift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit-Swift.podspec -------------------------------------------------------------------------------- /CJBaseUIKit-Swift/CJAlert/CJAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit-Swift/CJAlert/CJAlert.swift -------------------------------------------------------------------------------- /CJBaseUIKit-Swift/CJSlider/CJSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit-Swift/CJSlider/CJSlider.h -------------------------------------------------------------------------------- /CJBaseUIKit-Swift/CJToast/CJToast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit-Swift/CJToast/CJToast.swift -------------------------------------------------------------------------------- /CJBaseUIKit-Swift/CJUIKit-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit-Swift/CJUIKit-Swift.h -------------------------------------------------------------------------------- /CJBaseUIKit-Swift/UILabel/CJLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit-Swift/UILabel/CJLabel.swift -------------------------------------------------------------------------------- /CJBaseUIKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit.podspec -------------------------------------------------------------------------------- /CJBaseUIKit/CJSlider/CJBaseUISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/CJSlider/CJBaseUISlider.h -------------------------------------------------------------------------------- /CJBaseUIKit/CJSlider/CJBaseUISlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/CJSlider/CJBaseUISlider.m -------------------------------------------------------------------------------- /CJBaseUIKit/CJSlider/CJSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/CJSlider/CJSlider.h -------------------------------------------------------------------------------- /CJBaseUIKit/CJSwitchView/CJSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/CJSwitchView/CJSwitchView.h -------------------------------------------------------------------------------- /CJBaseUIKit/CJSwitchView/CJSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/CJSwitchView/CJSwitchView.m -------------------------------------------------------------------------------- /CJBaseUIKit/CJUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/CJUIKit.h -------------------------------------------------------------------------------- /CJBaseUIKit/UIButton/CJButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UIButton/CJButton.h -------------------------------------------------------------------------------- /CJBaseUIKit/UIButton/CJButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UIButton/CJButton.m -------------------------------------------------------------------------------- /CJBaseUIKit/UIColor/UIColor+CJHex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UIColor/UIColor+CJHex.h -------------------------------------------------------------------------------- /CJBaseUIKit/UIColor/UIColor+CJHex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UIColor/UIColor+CJHex.m -------------------------------------------------------------------------------- /CJBaseUIKit/UIImage/UIImageCJCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UIImage/UIImageCJCategory.h -------------------------------------------------------------------------------- /CJBaseUIKit/UILabel/CJLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UILabel/CJLabel.h -------------------------------------------------------------------------------- /CJBaseUIKit/UILabel/CJLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UILabel/CJLabel.m -------------------------------------------------------------------------------- /CJBaseUIKit/UIToolbar/CJDefaultToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UIToolbar/CJDefaultToolbar.h -------------------------------------------------------------------------------- /CJBaseUIKit/UIToolbar/CJDefaultToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UIToolbar/CJDefaultToolbar.m -------------------------------------------------------------------------------- /CJBaseUIKit/UIView/UIViewCJCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUIKit/UIView/UIViewCJCategory.h -------------------------------------------------------------------------------- /CJBaseUtil.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil.podspec -------------------------------------------------------------------------------- /CJBaseUtil/CJAppLastUtil/CJAppLastUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJAppLastUtil/CJAppLastUser.h -------------------------------------------------------------------------------- /CJBaseUtil/CJAppLastUtil/CJAppLastUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJAppLastUtil/CJAppLastUser.m -------------------------------------------------------------------------------- /CJBaseUtil/CJAppLastUtil/CJAppLastUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJAppLastUtil/CJAppLastUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJAppLastUtil/CJAppLastUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJAppLastUtil/CJAppLastUtil.m -------------------------------------------------------------------------------- /CJBaseUtil/CJCallUtil/CJCallUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJCallUtil/CJCallUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJCallUtil/CJCallUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJCallUtil/CJCallUtil.m -------------------------------------------------------------------------------- /CJBaseUtil/CJConvertUtil/CJConvertUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJConvertUtil/CJConvertUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJConvertUtil/CJConvertUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJConvertUtil/CJConvertUtil.m -------------------------------------------------------------------------------- /CJBaseUtil/CJDataUtil/CJDataAllUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDataUtil/CJDataAllUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJDataUtil/CJDataUtil+Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDataUtil/CJDataUtil+Value.h -------------------------------------------------------------------------------- /CJBaseUtil/CJDataUtil/CJDataUtil+Value.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDataUtil/CJDataUtil+Value.m -------------------------------------------------------------------------------- /CJBaseUtil/CJDataUtil/CJDataUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDataUtil/CJDataUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJDataUtil/CJDataUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDataUtil/CJDataUtil.m -------------------------------------------------------------------------------- /CJBaseUtil/CJDateUtil/CJDateOtherUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDateUtil/CJDateOtherUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJDateUtil/CJDateOtherUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDateUtil/CJDateOtherUtil.m -------------------------------------------------------------------------------- /CJBaseUtil/CJDecimalUtil/CJDecimalUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDecimalUtil/CJDecimalUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJDecimalUtil/CJDecimalUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDecimalUtil/CJDecimalUtil.m -------------------------------------------------------------------------------- /CJBaseUtil/CJDecimalUtil/CJMoneyUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDecimalUtil/CJMoneyUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJDecimalUtil/CJMoneyUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJDecimalUtil/CJMoneyUtil.m -------------------------------------------------------------------------------- /CJBaseUtil/CJQRCodeUtil/CJQRCodeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJQRCodeUtil/CJQRCodeUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJQRCodeUtil/CJQRCodeUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJQRCodeUtil/CJQRCodeUtil.m -------------------------------------------------------------------------------- /CJBaseUtil/CJRandomNameUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJRandomNameUtil.h -------------------------------------------------------------------------------- /CJBaseUtil/CJRandomNameUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJRandomNameUtil.m -------------------------------------------------------------------------------- /CJBaseUtil/CJRandomNameUtil.txt: -------------------------------------------------------------------------------- 1 | abc 2 | efg 3 | -------------------------------------------------------------------------------- /CJBaseUtil/CJUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJBaseUtil/CJUtil.h -------------------------------------------------------------------------------- /CJComplexUIKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJComplexUIKit.podspec -------------------------------------------------------------------------------- /CJComplexUIKit/CJComplexUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJComplexUIKit/CJComplexUIKit.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJComplexUIKitDemo/Podfile -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJComplexUIKitDemo/Podfile.lock -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/CJFile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJComplexUIKitDemo/Pods/CJFile/LICENSE -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/CJFile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJComplexUIKitDemo/Pods/CJFile/README.md -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/CQDemoKit/README.md: -------------------------------------------------------------------------------- 1 | # 001-UIKit-CJTS-iOS 2 | a template demo 3 | -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseHelper/WebCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/WebCJHelper/WebCJHelper.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJAdsorbModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJAdsorbModel/CJAdsorbModel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJBadgeButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJBadgeButton/CJBadgeButton.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJBaseUISlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJBaseUISlider.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJButton.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJDefaultToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIToolbar/CJDefaultToolbar.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJLabel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UILabel/CJLabel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSlider.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJTextField.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextField/CJTextField/CJTextField.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJTextView.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextView/CJTextView/CJTextView.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKit.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJUIKitConstant.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKitConstant/CJUIKitConstant.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIButton+CJStructure.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/UIButton+CJStructure.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIColor+CJHex.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIColor/UIColor+CJHex.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJBase64.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Data/UIImage+CJBase64.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJBlur.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Edit/UIImage+CJBlur.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJCreate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Base/UIImage+CJCreate.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIImageCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/UIImageCJCategory.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIView+CJShake.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/CJShakeAction/UIView+CJShake.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIViewCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/UIViewCJCategory.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIWindow+CJSnapshot.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIWindow/UIWindow+CJSnapshot.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJFile/CJFileManager.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileManager/CJFileManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCategory.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJCut.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCut.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJEncoding.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJEncoding.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJTextSize.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJTextSize.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJValidate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJValidate.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQDemoKit/CJUIKitAlertUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUtil/CJUIKitAlertUtil.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQDemoKit/CJUIKitToastUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUtil/CJUIKitToastUtil.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQDemoKit/CQDMModuleModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/Base/Model/CQDMModuleModel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQDemoKit/CQDMTabBarModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/TabBar/Model/CQDMTabBarModel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSButtonFactory.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/CQTSButtonFactory.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/image/CQTSImageLoader.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQDemoKit/UIImage+CQDemoKit.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Helper/UIImage+CQDemoKit.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQImageKit/CQBaseImageView.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/BaseImageView/CQBaseImageView.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQImageKit/CQImageBusinessEnum.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/Loader/CQImageBusinessEnum.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQImageKit/CQImageEnum.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/ViewBannedCategory/CQImageEnum.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQImageKit/CQImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/Loader/CQImageLoader.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQImageKit/CQImageLoaderCut.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/Loader/CQImageLoaderCut.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQOverlayKit/CQAlertManager.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/CQAlert/CQAlertManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQOverlayKit/CQAlertUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/CQAlert/CQAlertUtil.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQOverlayKit/CQHUDThemeModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/Theme/CQHUDThemeModel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQOverlayKit/CQJumpMapUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/CQActionSheet/CQJumpMapUtil.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQOverlayKit/CQOverlayTheme.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/Theme/CQOverlayTheme.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQOverlayKit/CQToastThemeModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/Theme/CQToastThemeModel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/CQOverlayKit/UIAlertUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/CQAlert/UIAlertUtil.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/IjinbuNetwork/IjinbuNetworkClient.h: -------------------------------------------------------------------------------- 1 | ../../../IjinbuNetwork/IjinbuNetwork/IjinbuNetworkClient.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/IjinbuNetwork/IjinbuSession.h: -------------------------------------------------------------------------------- 1 | ../../../IjinbuNetwork/IjinbuNetwork/Models/IjinbuSession.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/IjinbuNetwork/IjinbuUser.h: -------------------------------------------------------------------------------- 1 | ../../../IjinbuNetwork/IjinbuNetwork/Models/IjinbuUser.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/OpenUDID/OpenUDID.h: -------------------------------------------------------------------------------- 1 | ../../../OpenUDID/OpenUDID.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/NSButton+WebCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/NSImage+Compatibility.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/NSImage+Compatibility.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDAnimatedImage.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDAnimatedImage.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDAnimatedImagePlayer.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDAnimatedImagePlayer.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDAnimatedImageView.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDAssociatedObject.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDAssociatedObject.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDCallbackQueue.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDCallbackQueue.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDDeviceHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDDeviceHelper.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDDiskCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDDisplayLink.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDDisplayLink.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageAPNGCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageAWebPCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageAWebPCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageAssetManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDImageAssetManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCacheConfig.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageCacheDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCacheDefine.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageCachesManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCachesManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCoderHelper.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageCodersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCodersManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageFrame.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageFramePool.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDImageFramePool.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageGIFCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageGraphics.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageGraphics.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageHEICCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageHEICCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageIOCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageLoader.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageLoadersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageLoadersManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDImageTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageTransformer.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDInternalMacros.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDInternalMacros.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDMemoryCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWeakProxy.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDWeakProxy.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageCompat.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImageDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageDefine.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageDownloader.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImageError.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageError.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImageIndicator.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageIndicator.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageOperation.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageTransition.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/SDmetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/SDmetamacros.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIButton+WebCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIColor+SDHexString.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Private/UIColor+SDHexString.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIImage+Metadata.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+Metadata.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIImage+Transform.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+Transform.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImageView+WebCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SDWebImage/UIView+WebCacheState.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIView+WebCacheState.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/YYCache/YYCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYCache/YYCache/YYCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/YYCache/YYDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYCache/YYCache/YYDiskCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/YYCache/YYKVStorage.h: -------------------------------------------------------------------------------- 1 | ../../../YYCache/YYCache/YYKVStorage.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Private/YYCache/YYMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYCache/YYCache/YYMemoryCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/AFNetworking/AFCompatibilityMacros.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFCompatibilityMacros.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseHelper/WebCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/WebCJHelper/WebCJHelper.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJAdsorbModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJAdsorbModel/CJAdsorbModel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJBadgeButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJBadgeButton/CJBadgeButton.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJBaseUISlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJBaseUISlider.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJButton.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJDefaultToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIToolbar/CJDefaultToolbar.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJLabel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UILabel/CJLabel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSlider.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJSliderThumb.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSliderControl/CJSliderThumb.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJTextField.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextField/CJTextField/CJTextField.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJTextView.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextView/CJTextView/CJTextView.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKit.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJUIKitConstant.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKitConstant/CJUIKitConstant.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIButton+CJStructure.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/UIButton+CJStructure.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIColor+CJHex.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIColor/UIColor+CJHex.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJBase64.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Data/UIImage+CJBase64.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJBlur.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Edit/UIImage+CJBlur.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJCreate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Base/UIImage+CJCreate.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIImageCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/UIImageCJCategory.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIView+CJShake.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/CJShakeAction/UIView+CJShake.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIViewCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/UIViewCJCategory.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIWindow+CJSnapshot.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIWindow/UIWindow+CJSnapshot.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJFile/CJFileManager.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileManager/CJFileManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCategory.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJCut.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCut.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJEncoding.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJEncoding.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJTextSize.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJTextSize.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJValidate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJValidate.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQDemoKit/CJUIKitAlertUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUtil/CJUIKitAlertUtil.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQDemoKit/CJUIKitToastUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUtil/CJUIKitToastUtil.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQDemoKit/CQDMModuleModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/Base/Model/CQDMModuleModel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQDemoKit/CQDMTabBarModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/TabBar/Model/CQDMTabBarModel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSButtonFactory.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/CQTSButtonFactory.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/image/CQTSImageLoader.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQDemoKit/UIImage+CQDemoKit.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Helper/UIImage+CQDemoKit.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQImageKit/CQBaseImageView.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/BaseImageView/CQBaseImageView.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQImageKit/CQImageBusinessEnum.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/Loader/CQImageBusinessEnum.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQImageKit/CQImageEnum.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/ViewBannedCategory/CQImageEnum.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQImageKit/CQImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/Loader/CQImageLoader.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQImageKit/CQImageLoaderCut.h: -------------------------------------------------------------------------------- 1 | ../../../CQImageKit/CQImageKit/Loader/CQImageLoaderCut.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQOverlayKit/CQAlertManager.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/CQAlert/CQAlertManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQOverlayKit/CQAlertUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/CQAlert/CQAlertUtil.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQOverlayKit/CQHUDThemeModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/Theme/CQHUDThemeModel.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQOverlayKit/CQOverlayTheme.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/Theme/CQOverlayTheme.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/CQOverlayKit/UIAlertUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQOverlayKit/CQOverlayKit/CQAlert/UIAlertUtil.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/IjinbuNetwork/IjinbuSession.h: -------------------------------------------------------------------------------- 1 | ../../../IjinbuNetwork/IjinbuNetwork/Models/IjinbuSession.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/IjinbuNetwork/IjinbuUser.h: -------------------------------------------------------------------------------- 1 | ../../../IjinbuNetwork/IjinbuNetwork/Models/IjinbuUser.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/Masonry-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Masonry/Masonry-umbrella.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/Masonry.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/Masonry/Masonry.modulemap -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/OpenUDID/OpenUDID.h: -------------------------------------------------------------------------------- 1 | ../../../OpenUDID/OpenUDID.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/NSButton+WebCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDAnimatedImage.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDAnimatedImage.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDAnimatedImageView.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDAnimatedImageView.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDCallbackQueue.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDCallbackQueue.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDDiskCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageAPNGCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageAPNGCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageAWebPCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageAWebPCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCacheConfig.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageCacheDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCacheDefine.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageCoderHelper.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageFrame.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageGIFCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageGraphics.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageGraphics.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageHEICCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageHEICCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageIOCoder.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageLoader.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDImageTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDImageTransformer.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDMemoryCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDWebImage.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/WebImage/SDWebImage.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageCompat.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDWebImageDefine.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageDefine.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDWebImageError.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageError.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDWebImageIndicator.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageIndicator.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageManager.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/SDWebImageOperation.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIButton+WebCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+GIF.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/UIImage+Metadata.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+Metadata.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/UIImage+Transform.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIImage+Transform.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/Core/UIView+WebCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SnapKit/SnapKit-umbrella.h: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SnapKit/SnapKit-umbrella.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- 1 | ../../../Target Support Files/SnapKit/SnapKit.modulemap -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/YYCache/YYCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYCache/YYCache/YYCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/YYCache/YYDiskCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYCache/YYCache/YYDiskCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/YYCache/YYKVStorage.h: -------------------------------------------------------------------------------- 1 | ../../../YYCache/YYCache/YYKVStorage.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Headers/Public/YYCache/YYMemoryCache.h: -------------------------------------------------------------------------------- 1 | ../../../YYCache/YYCache/YYMemoryCache.h -------------------------------------------------------------------------------- /CJComplexUIKitDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJComplexUIKitDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /CJFoundation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJFoundation.podspec -------------------------------------------------------------------------------- /CJFoundation/CJFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJFoundation/CJFoundation.h -------------------------------------------------------------------------------- /CJFoundation/NSString/NSString+CJCut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJFoundation/NSString/NSString+CJCut.h -------------------------------------------------------------------------------- /CJFoundation/NSString/NSString+CJCut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJFoundation/NSString/NSString+CJCut.m -------------------------------------------------------------------------------- /CJFoundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJFoundation/README.md -------------------------------------------------------------------------------- /CJHook.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHook.podspec -------------------------------------------------------------------------------- /CJHookDemo/CJHookDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/CJHookDemo/AppDelegate.h -------------------------------------------------------------------------------- /CJHookDemo/CJHookDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/CJHookDemo/AppDelegate.m -------------------------------------------------------------------------------- /CJHookDemo/CJHookDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/CJHookDemo/Info.plist -------------------------------------------------------------------------------- /CJHookDemo/CJHookDemo/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/CJHookDemo/PrefixHeader.pch -------------------------------------------------------------------------------- /CJHookDemo/CJHookDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/CJHookDemo/ViewController.h -------------------------------------------------------------------------------- /CJHookDemo/CJHookDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/CJHookDemo/ViewController.m -------------------------------------------------------------------------------- /CJHookDemo/CJHookDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/CJHookDemo/main.m -------------------------------------------------------------------------------- /CJHookDemo/CJHookDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/CJHookDemoTests/Info.plist -------------------------------------------------------------------------------- /CJHookDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Podfile -------------------------------------------------------------------------------- /CJHookDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Podfile.lock -------------------------------------------------------------------------------- /CJHookDemo/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /CJHookDemo/Pods/AFNetworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/AFNetworking/README.md -------------------------------------------------------------------------------- /CJHookDemo/Pods/CJFile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/CJFile/LICENSE -------------------------------------------------------------------------------- /CJHookDemo/Pods/CJFile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/CJFile/README.md -------------------------------------------------------------------------------- /CJHookDemo/Pods/CJMedia/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/CJMedia/LICENSE -------------------------------------------------------------------------------- /CJHookDemo/Pods/CJMedia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/CJMedia/README.md -------------------------------------------------------------------------------- /CJHookDemo/Pods/CJNetwork/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/CJNetwork/LICENSE -------------------------------------------------------------------------------- /CJHookDemo/Pods/CJNetwork/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/CJNetwork/README.md -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseHelper/HookCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/HookCJHelper/HookCJHelper.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseHelper/WebCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/WebCJHelper/WebCJHelper.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJAdsorbModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJAdsorbModel/CJAdsorbModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJAlert.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJAlert/CJAlert.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJAlert/CJAlertView.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJBadgeButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJBadgeButton/CJBadgeButton.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJBaseUISlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJBaseUISlider.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJButton.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJDefaultToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIToolbar/CJDefaultToolbar.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJPlayerSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJPlayerSlider/CJPlayerSlider.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSlider.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJSliderThumb.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSliderControl/CJSliderThumb.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJSwitchSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSwitchSlider/CJSwitchSlider.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJTextField.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextField/CJTextField/CJTextField.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJTextView.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJTextView/CJTextView.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJToast.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJToast/CJToast.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/CJUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKit.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIColor+CJHex.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIColor/UIColor+CJHex.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJBase64.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Data/UIImage+CJBase64.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJBlur.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Edit/UIImage+CJBlur.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJCreate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Base/UIImage+CJCreate.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJMakeCircle.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Edit/UIImage+CJMakeCircle.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIImageCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/UIImageCJCategory.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIView+CJExclusiveTouch.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/UIView+CJExclusiveTouch.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIView+CJShake.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/CJShakeAction/UIView+CJShake.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIViewCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/UIViewCJCategory.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUIKit/UIWindow+CJSnapshot.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIWindow/UIWindow+CJSnapshot.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJAppLastLaunchInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastLaunchInfo.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJAppLastUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUser.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJAppLastUserManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUserManager.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJAppLastUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJCallUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJCallUtil/CJCallUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJDataAllUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataAllUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJDataUtil+SortOrder.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil+SortOrder.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJDataUtil+Value.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil+Value.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJDataUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJDateOtherUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDateUtil/CJDateOtherUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJKeyboardUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJKeyboardUtil/CJKeyboardUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJLaunchImageUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJLaunchImageUtil/CJLaunchImageUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJModuleModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/CJModuleModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJPinyinHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJPinyinHelper/CJPinyinHelper.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJQRCodeUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJQRCodeUtil/CJQRCodeUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJRealtimeSearchUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJRealtimeSearchUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJSearchResult.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/Search/CJSearchResult.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJSectionDataModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/CJSectionDataModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJTimerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJManager/CJTimerManager/CJTimerManager.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJBaseUtil/CJTimerModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJManager/CJTimerManager/CJTimerModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJFile/CJFileManager.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileManager/CJFileManager.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJFile/CJPathFileModel.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileModel/CJPathFileModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJFoundation/NSString+CJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCategory.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJFoundation/NSString+CJEncoding.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJEncoding.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJFoundation/NSString+CJEncryption.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJEncryption.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJFoundation/NSString+CJTextSize.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJTextSize.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJFoundation/NSString+CJValidate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJValidate.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJHook/CJFileUploadPanel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJHook/CJFileUploadPanel/CJFileUploadPanel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/CJHook/UIButton+CJFixMultiClick.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJHook/UIButton/UIButton+CJFixMultiClick.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/PinYin4Objc/PinYin4Objc.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinYin4Objc.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/PinYin4Objc/PinyinFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinyinFormatter.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/PinYin4Objc/PinyinHelper.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinyinHelper.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/SAMKeychain/SAMKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SAMKeychain/Sources/SAMKeychain.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/SAMKeychain/SAMKeychainQuery.h: -------------------------------------------------------------------------------- 1 | ../../../SAMKeychain/Sources/SAMKeychainQuery.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Private/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseEffectKit/CJDataEmptyView.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseEffectKit/CJDataEmptyView/CJDataEmptyView.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseHelper/HookCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/HookCJHelper/HookCJHelper.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseHelper/WebCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/WebCJHelper/WebCJHelper.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJAdsorbModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJAdsorbModel/CJAdsorbModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJAlert.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJAlert/CJAlert.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJAlert/CJAlertView.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJBadgeButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJBadgeButton/CJBadgeButton.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJBaseUISlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJBaseUISlider.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJButton.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJDefaultToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIToolbar/CJDefaultToolbar.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJPlayerSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJPlayerSlider/CJPlayerSlider.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSlider.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJSliderThumb.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSliderControl/CJSliderThumb.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJSwitchSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSwitchSlider/CJSwitchSlider.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJTextField.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextField/CJTextField/CJTextField.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJTextView.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJTextView/CJTextView.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJToast.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJToast/CJToast.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/CJUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKit.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIColor+CJHex.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIColor/UIColor+CJHex.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJBase64.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Data/UIImage+CJBase64.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJBlur.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Edit/UIImage+CJBlur.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJCreate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Base/UIImage+CJCreate.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJMakeCircle.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Edit/UIImage+CJMakeCircle.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIImageCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/UIImageCJCategory.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UITextField+CJPadding.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextField/UITextField+CJPadding.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UITextFieldCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextField/UITextFieldCJCategory.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIView+CJExclusiveTouch.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/UIView+CJExclusiveTouch.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIView+CJShake.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/CJShakeAction/UIView+CJShake.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIViewCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/UIViewCJCategory.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUIKit/UIWindow+CJSnapshot.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIWindow/UIWindow+CJSnapshot.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJAppLastLaunchInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastLaunchInfo.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJAppLastUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUser.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJAppLastUserManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUserManager.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJAppLastUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJCallUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJCallUtil/CJCallUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJDataAllUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataAllUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJDataUtil+SortOrder.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil+SortOrder.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJDataUtil+Value.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil+Value.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJDataUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJDateOtherUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDateUtil/CJDateOtherUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJKeyboardUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJKeyboardUtil/CJKeyboardUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJLaunchImageUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJLaunchImageUtil/CJLaunchImageUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJModuleManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJManager/CJModuleManager/CJModuleManager.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJModuleModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/CJModuleModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJPinyinHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJPinyinHelper/CJPinyinHelper.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJQRCodeUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJQRCodeUtil/CJQRCodeUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJRealtimeSearchUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJRealtimeSearchUtil.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJSearchResult.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/Search/CJSearchResult.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJSectionDataModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/CJSectionDataModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJTimerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJManager/CJTimerManager/CJTimerManager.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJBaseUtil/CJTimerModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJManager/CJTimerManager/CJTimerModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJFile/CJFileManager.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileManager/CJFileManager.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJFile/CJPathFileModel.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileModel/CJPathFileModel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJFoundation/NSString+CJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCategory.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJFoundation/NSString+CJEncoding.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJEncoding.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJFoundation/NSString+CJEncryption.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJEncryption.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJFoundation/NSString+CJTextSize.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJTextSize.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJFoundation/NSString+CJValidate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJValidate.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJHook/CJFileUploadPanel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJHook/CJFileUploadPanel/CJFileUploadPanel.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/CJHook/UIButton+CJFixMultiClick.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJHook/UIButton/UIButton+CJFixMultiClick.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/PinYin4Objc/PinYin4Objc.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinYin4Objc.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/PinYin4Objc/PinyinFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinyinFormatter.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/PinYin4Objc/PinyinHelper.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinyinHelper.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/SAMKeychain/SAMKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SAMKeychain/Sources/SAMKeychain.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/SAMKeychain/SAMKeychainQuery.h: -------------------------------------------------------------------------------- 1 | ../../../SAMKeychain/Sources/SAMKeychainQuery.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/SVProgressHUD/SVProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVProgressHUD.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/Headers/Public/SVProgressHUD/SVRadialGradientLayer.h: -------------------------------------------------------------------------------- 1 | ../../../SVProgressHUD/SVProgressHUD/SVRadialGradientLayer.h -------------------------------------------------------------------------------- /CJHookDemo/Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /CJHookDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /CJHookDemo/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /CJHookDemo/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/Masonry/README.md -------------------------------------------------------------------------------- /CJHookDemo/Pods/PinYin4Objc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/PinYin4Objc/LICENSE -------------------------------------------------------------------------------- /CJHookDemo/Pods/PinYin4Objc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/PinYin4Objc/README.md -------------------------------------------------------------------------------- /CJHookDemo/Pods/SAMKeychain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/SAMKeychain/LICENSE -------------------------------------------------------------------------------- /CJHookDemo/Pods/SVProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJHookDemo/Pods/SVProgressHUD/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/CJUIKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/CJUIKitDemo/Info.plist -------------------------------------------------------------------------------- /CJUIKitDemo/CJUIKitDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/CJUIKitDemo/main.m -------------------------------------------------------------------------------- /CJUIKitDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Podfile -------------------------------------------------------------------------------- /CJUIKitDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Podfile.lock -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/AFNetworking/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/AFNetworking/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/CJFile/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/CJFile/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/CJFile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/CJFile/README.md -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/CJPopupView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/CJPopupView/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/CJPopupView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/CJPopupView/README.md -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/CQDemoKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/CQDemoKit/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/CQDemoKit/README.md: -------------------------------------------------------------------------------- 1 | # 001-UIKit-CJTS-iOS 2 | a template demo 3 | -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseHelper/HookCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/HookCJHelper/HookCJHelper.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseHelper/WebCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/WebCJHelper/WebCJHelper.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJAdsorbModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJAdsorbModel/CJAdsorbModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJBadgeButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJBadgeButton/CJBadgeButton.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJBaseUISlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJBaseUISlider.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJButton.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJDefaultToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIToolbar/CJDefaultToolbar.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJLabel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UILabel/CJLabel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJPlayerSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJPlayerSlider/CJPlayerSlider.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSlider.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJSliderThumb.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSliderControl/CJSliderThumb.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJSwitchSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSwitchSlider/CJSwitchSlider.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJTextField.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextField/CJTextField/CJTextField.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJTextView.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextView/CJTextView/CJTextView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKit.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/CJUIKitConstant.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKitConstant/CJUIKitConstant.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIButton+CJStructure.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/UIButton+CJStructure.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIColor+CJHex.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIColor/UIColor+CJHex.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJBase64.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Data/UIImage+CJBase64.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJBlur.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Edit/UIImage+CJBlur.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIImage+CJCreate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Base/UIImage+CJCreate.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIImageCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/UIImageCJCategory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIView+CJShake.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/CJShakeAction/UIView+CJShake.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIViewCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/UIViewCJCategory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUIKit/UIWindow+CJSnapshot.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIWindow/UIWindow+CJSnapshot.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJAppLastLaunchInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastLaunchInfo.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJAppLastUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUser.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJAppLastUserManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUserManager.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJAppLastUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJCallUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJCallUtil/CJCallUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJDataAllUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataAllUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJDataUtil+SortOrder.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil+SortOrder.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJDataUtil+Value.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil+Value.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJDataUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJDateOtherUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDateUtil/CJDateOtherUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJKeyboardUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJKeyboardUtil/CJKeyboardUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJLaunchImageUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJLaunchImageUtil/CJLaunchImageUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJModuleModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/CJModuleModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJPinyinHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJPinyinHelper/CJPinyinHelper.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJQRCodeUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJQRCodeUtil/CJQRCodeUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJRealtimeSearchUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJRealtimeSearchUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJSearchResult.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/Search/CJSearchResult.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJSectionDataModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/CJSectionDataModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJTimerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJManager/CJTimerManager/CJTimerManager.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJBaseUtil/CJTimerModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJManager/CJTimerManager/CJTimerModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJFile/CJFileManager.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileManager/CJFileManager.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJFile/CJPathFileModel.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileModel/CJPathFileModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCategory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJCut.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCut.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJEncoding.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJEncoding.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJTextSize.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJTextSize.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJFoundation/NSString+CJValidate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJValidate.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CJPopupView/CJDrawRectUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CJPopupView/CJPopupView/CJPopoverView/CJDrawRectUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CJDealTextModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/TextView/Model/CJDealTextModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CJUIKitAlertUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUtil/CJUIKitAlertUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CJUIKitToastUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUtil/CJUIKitToastUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQDMModuleModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/Base/Model/CQDMModuleModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQDMTabBarModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/TabBar/Model/CQDMTabBarModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSBorderStateButton.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/CQTSBorderStateButton.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSButtonFactory.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/CQTSButtonFactory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/image/CQTSImageLoader.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSPhotoUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSPhotoUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSResourceEnum.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSResourceEnum.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSResourceUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSResourceUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSRipeButton.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_RipeView/CQTSRipeButton.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSRipeTableView.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_RipeView/CQTSRipeTableView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSSandboxFileUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSSandboxFileUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSSandboxPathUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSSandboxPathUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/CQTSSwitchViewFactory.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/CQTSSwitchViewFactory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/CQDemoKit/UIImage+CQDemoKit.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Helper/UIImage+CQDemoKit.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/IQKeyboardManager/IQToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyboardManager/IQToolbar/IQToolbar.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/MTLEXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/include/MTLEXTKeyPathCoding.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/MTLEXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/include/MTLEXTScope.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/MTLJSONAdapter.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/MTLMetamacros.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/extobjc/include/MTLMetamacros.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/MTLModel.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/MTLModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/MTLValueTransformer.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/Mantle.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/NSDictionary+MTLJSONKeyPath.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLJSONKeyPath.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/PinYin4Objc/PinYin4Objc.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinYin4Objc.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/PinYin4Objc/PinyinFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinyinFormatter.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/PinYin4Objc/PinyinHelper.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinyinHelper.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/SAMKeychain/SAMKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SAMKeychain/Sources/SAMKeychain.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/SAMKeychain/SAMKeychainQuery.h: -------------------------------------------------------------------------------- 1 | ../../../SAMKeychain/Sources/SAMKeychainQuery.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Shimmer/FBShimmering.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmering.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Shimmer/FBShimmeringLayer.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmeringLayer.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/Shimmer/FBShimmeringView.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmeringView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/UIView+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/UIView+YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYLabel.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/YYLabel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextArchiver.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextArchiver.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextAsyncLayer.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/YYTextAsyncLayer.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextAttribute.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextContainerView.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextDebugOption.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextEffectWindow.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextInput.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextInput.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextLayout.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextLayout.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextLine.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextLine.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextMagnifier.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextParser.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextParser.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextRunDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextSelectionView.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/YYTextTransaction.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/YYTextUtilities.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextView.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/YYTextView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Private/YYText/YYTextWeakProxy.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/YYTextWeakProxy.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseHelper/HookCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/HookCJHelper/HookCJHelper.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseHelper/WebCJHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseHelper/CJBaseHelper/WebCJHelper/WebCJHelper.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJAdsorbModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJAdsorbModel/CJAdsorbModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJBadgeButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJBadgeButton/CJBadgeButton.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJBaseUISlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJBaseUISlider.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJButton.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/CJButton.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJDefaultToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIToolbar/CJDefaultToolbar.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJLabel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UILabel/CJLabel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJPlayerSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJPlayerSlider/CJPlayerSlider.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSlider.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJSliderThumb.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSliderControl/CJSliderThumb.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJSwitchSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJSlider/CJSwitchSlider/CJSwitchSlider.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJTextField.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextField/CJTextField/CJTextField.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJTextView.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UITextView/CJTextView/CJTextView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJUIKit.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKit.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/CJUIKitConstant.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/CJUIKitConstant/CJUIKitConstant.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIButton+CJStructure.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIButton/UIButton+CJStructure.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIColor+CJHex.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIColor/UIColor+CJHex.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJBase64.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Data/UIImage+CJBase64.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJBlur.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Edit/UIImage+CJBlur.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJCreate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Base/UIImage+CJCreate.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIImage+CJMakeCircle.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/Edit/UIImage+CJMakeCircle.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIImageCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIImage/UIImageCJCategory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIView+CJExclusiveTouch.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/UIView+CJExclusiveTouch.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIView+CJShake.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/CJShakeAction/UIView+CJShake.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIViewCJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIView/UIViewCJCategory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUIKit/UIWindow+CJSnapshot.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUIKit/UIWindow/UIWindow+CJSnapshot.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJAppLastLaunchInfo.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastLaunchInfo.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJAppLastUser.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUser.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJAppLastUserManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUserManager.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJAppLastUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJAppLastUtil/CJAppLastUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJCallUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJCallUtil/CJCallUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJDataAllUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataAllUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJDataUtil+SortOrder.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil+SortOrder.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJDataUtil+Value.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil+Value.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJDataUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJDataUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJDateOtherUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDateUtil/CJDateOtherUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJKeyboardUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJKeyboardUtil/CJKeyboardUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJLaunchImageUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJLaunchImageUtil/CJLaunchImageUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJModuleModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/CJModuleModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJPinyinHelper.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJPinyinHelper/CJPinyinHelper.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJQRCodeUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJQRCodeUtil/CJQRCodeUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJRealtimeSearchUtil.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/CJRealtimeSearchUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJSearchResult.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/Search/CJSearchResult.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJSectionDataModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJDataUtil/Models/CJSectionDataModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJTimerManager.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJManager/CJTimerManager/CJTimerManager.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJBaseUtil/CJTimerModel.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJBaseUtil/CJManager/CJTimerManager/CJTimerModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJFile/CJFileManager.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileManager/CJFileManager.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJFile/CJPathFileModel.h: -------------------------------------------------------------------------------- 1 | ../../../CJFile/CJFile/CJFileModel/CJPathFileModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJCategory.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCategory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJCut.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJCut.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJEncoding.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJEncoding.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJEncryption.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJEncryption.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJTextLength.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJTextLength.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJTextSize.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJTextSize.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJFoundation/NSString+CJValidate.h: -------------------------------------------------------------------------------- 1 | ../../../../../CJFoundation/NSString/NSString+CJValidate.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CJPopupView/CJDrawRectUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CJPopupView/CJPopupView/CJPopoverView/CJDrawRectUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CJDealTextModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/TextView/Model/CJDealTextModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CJUIKitAlertUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUtil/CJUIKitAlertUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CJUIKitToastUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUtil/CJUIKitToastUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQDMModuleModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/Base/Model/CQDMModuleModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQDMTabBarModel.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseVC/TabBar/Model/CQDMTabBarModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSBorderStateButton.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/CQTSBorderStateButton.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSButtonFactory.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/CQTSButtonFactory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSImageLoader.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/image/CQTSImageLoader.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSPhotoUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSPhotoUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSResourceEnum.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSResourceEnum.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSResourceUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSResourceUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSRipeButton.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_RipeView/CQTSRipeButton.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSRipeTableView.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_RipeView/CQTSRipeTableView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSSandboxFileUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSSandboxFileUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSSandboxPathUtil.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Demo_Resource/CQTSSandboxPathUtil.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/CQTSSwitchViewFactory.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/BaseUIKit/CQTSSwitchViewFactory.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/NSError+CQTSErrorString.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Helper/NSError+CQTSErrorString.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/CQDemoKit/UIImage+CQDemoKit.h: -------------------------------------------------------------------------------- 1 | ../../../CQDemoKit/CQDemoKit/Helper/UIImage+CQDemoKit.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/IQKeyboardManager/IQToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../IQKeyboardManager/IQKeyboardManager/IQToolbar/IQToolbar.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtension.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/MJExtensionConst.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJExtensionConst.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJFoundation.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJProperty.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/MJPropertyKey.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyKey.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/MJPropertyType.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/MJPropertyType.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/NSObject+MJClass.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJClass.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/NSObject+MJCoding.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJCoding.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/NSObject+MJKeyValue.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJKeyValue.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/NSObject+MJProperty.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSObject+MJProperty.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/MJExtension/NSString+MJExtension.h: -------------------------------------------------------------------------------- 1 | ../../../MJExtension/MJExtension/NSString+MJExtension.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Mantle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/MTLJSONAdapter.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Mantle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Mantle/MTLModel.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/MTLModel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Mantle/MTLReflection.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/MTLReflection.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Mantle/MTLTransformerErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/MTLTransformerErrorHandling.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Mantle/MTLValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/MTLValueTransformer.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/include/Mantle.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Mantle/NSDictionary+MTLJSONKeyPath.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSDictionary+MTLJSONKeyPath.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Mantle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- 1 | ../../../Mantle/Mantle/NSError+MTLModelException.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/PinYin4Objc/PinYin4Objc.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinYin4Objc.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/PinYin4Objc/PinyinFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinyinFormatter.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/PinYin4Objc/PinyinHelper.h: -------------------------------------------------------------------------------- 1 | ../../../PinYin4Objc/PinYin4Objc/Classes/PinyinHelper.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/SAMKeychain/SAMKeychain.h: -------------------------------------------------------------------------------- 1 | ../../../SAMKeychain/Sources/SAMKeychain.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/SAMKeychain/SAMKeychainQuery.h: -------------------------------------------------------------------------------- 1 | ../../../SAMKeychain/Sources/SAMKeychainQuery.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Shimmer/FBShimmering.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmering.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Shimmer/FBShimmeringLayer.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmeringLayer.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/Shimmer/FBShimmeringView.h: -------------------------------------------------------------------------------- 1 | ../../../Shimmer/FBShimmering/FBShimmeringView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/UIView+YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/UIView+YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYLabel.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/YYLabel.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYText.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/YYText.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextArchiver.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextArchiver.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextAsyncLayer.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/YYTextAsyncLayer.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextAttribute.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextContainerView.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextDebugOption.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextEffectWindow.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextInput.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextInput.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextLayout.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextLayout.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextLine.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextLine.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextMagnifier.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextParser.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextParser.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextRunDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextSelectionView.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/YYTextTransaction.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/YYTextUtilities.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextView.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/YYTextView.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Headers/Public/YYText/YYTextWeakProxy.h: -------------------------------------------------------------------------------- 1 | ../../../YYText/YYText/Utility/YYTextWeakProxy.h -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/MJExtension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/MJExtension/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/MJExtension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/MJExtension/README.md -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Mantle/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/Mantle/LICENSE.md -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Mantle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/Mantle/README.md -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/Masonry/README.md -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/PinYin4Objc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/PinYin4Objc/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/PinYin4Objc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/PinYin4Objc/README.md -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/SAMKeychain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/SAMKeychain/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Shimmer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/Shimmer/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/Shimmer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/Shimmer/README.md -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/YYText/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/YYText/LICENSE -------------------------------------------------------------------------------- /CJUIKitDemo/Pods/YYText/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitDemo/Pods/YYText/README.md -------------------------------------------------------------------------------- /CJUIKitSwiftDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitSwiftDemo/AppDelegate.swift -------------------------------------------------------------------------------- /CJUIKitSwiftDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/CJUIKitSwiftDemo/ViewController.swift -------------------------------------------------------------------------------- /HeaderZoomDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/HeaderZoomDemo/README.md -------------------------------------------------------------------------------- /HeaderZoomDemo/headerZoom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/HeaderZoomDemo/headerZoom.gif -------------------------------------------------------------------------------- /Icon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/1024.png -------------------------------------------------------------------------------- /Icon.appiconset/20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/20pt@2x.png -------------------------------------------------------------------------------- /Icon.appiconset/20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/20pt@3x.png -------------------------------------------------------------------------------- /Icon.appiconset/29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/29pt@2x.png -------------------------------------------------------------------------------- /Icon.appiconset/29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/29pt@3x.png -------------------------------------------------------------------------------- /Icon.appiconset/40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/40pt@2x.png -------------------------------------------------------------------------------- /Icon.appiconset/40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/40pt@3x.png -------------------------------------------------------------------------------- /Icon.appiconset/60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/60pt@2x.png -------------------------------------------------------------------------------- /Icon.appiconset/60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/60pt@3x.png -------------------------------------------------------------------------------- /Icon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Icon.appiconset/Contents.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LICENSE -------------------------------------------------------------------------------- /LaunchImage.launchimage/1125_2436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LaunchImage.launchimage/1125_2436.png -------------------------------------------------------------------------------- /LaunchImage.launchimage/1242_2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LaunchImage.launchimage/1242_2208.png -------------------------------------------------------------------------------- /LaunchImage.launchimage/1242_2688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LaunchImage.launchimage/1242_2688.png -------------------------------------------------------------------------------- /LaunchImage.launchimage/640_1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LaunchImage.launchimage/640_1136.png -------------------------------------------------------------------------------- /LaunchImage.launchimage/640_960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LaunchImage.launchimage/640_960.png -------------------------------------------------------------------------------- /LaunchImage.launchimage/750_1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LaunchImage.launchimage/750_1334.png -------------------------------------------------------------------------------- /LaunchImage.launchimage/828_1792.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LaunchImage.launchimage/828_1792.png -------------------------------------------------------------------------------- /LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/LaunchImage.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/README.md -------------------------------------------------------------------------------- /README/CJBaseTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/README/CJBaseTest.md -------------------------------------------------------------------------------- /README/CJBaseUIKit_CJComplexUIKit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/README/CJBaseUIKit_CJComplexUIKit.md -------------------------------------------------------------------------------- /README/podspec的问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/README/podspec的问题.md -------------------------------------------------------------------------------- /Screenshots/example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Screenshots/example1.gif -------------------------------------------------------------------------------- /Screenshots/分割图1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/Screenshots/分割图1.jpg -------------------------------------------------------------------------------- /SwiftExtraCJHelper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/SwiftExtraCJHelper.md -------------------------------------------------------------------------------- /SwiftExtraCJHelper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/SwiftExtraCJHelper.podspec -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/icon.png -------------------------------------------------------------------------------- /icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/icon3.png -------------------------------------------------------------------------------- /icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/icon5.png -------------------------------------------------------------------------------- /要deprecated的.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dvlproad/CJUIKit/HEAD/要deprecated的.podspec --------------------------------------------------------------------------------