This commit is contained in:
DDIsFriend
2023-08-31 14:43:53 +08:00
parent 3fc94fcee1
commit 2cd605ad2b
109 changed files with 8314 additions and 8769 deletions

View File

@@ -2853,8 +2853,8 @@
filePath = "OrderScheduling/Global/Tool/Tool.swift" filePath = "OrderScheduling/Global/Tool/Tool.swift"
startingColumnNumber = "9223372036854775807" startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807"
startingLineNumber = "205" startingLineNumber = "199"
endingLineNumber = "205" endingLineNumber = "199"
landmarkName = "cycleVoice()" landmarkName = "cycleVoice()"
landmarkType = "7"> landmarkType = "7">
</BreakpointContent> </BreakpointContent>
@@ -2869,8 +2869,8 @@
filePath = "OrderScheduling/Global/Tool/Tool.swift" filePath = "OrderScheduling/Global/Tool/Tool.swift"
startingColumnNumber = "9223372036854775807" startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807"
startingLineNumber = "207" startingLineNumber = "201"
endingLineNumber = "207" endingLineNumber = "201"
landmarkName = "cycleVoice()" landmarkName = "cycleVoice()"
landmarkType = "7"> landmarkType = "7">
</BreakpointContent> </BreakpointContent>
@@ -2885,8 +2885,8 @@
filePath = "OrderScheduling/Global/Tool/Tool.swift" filePath = "OrderScheduling/Global/Tool/Tool.swift"
startingColumnNumber = "9223372036854775807" startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807"
startingLineNumber = "206" startingLineNumber = "200"
endingLineNumber = "206" endingLineNumber = "200"
landmarkName = "cycleVoice()" landmarkName = "cycleVoice()"
landmarkType = "7"> landmarkType = "7">
</BreakpointContent> </BreakpointContent>
@@ -2901,8 +2901,8 @@
filePath = "OrderScheduling/Global/Tool/Tool.swift" filePath = "OrderScheduling/Global/Tool/Tool.swift"
startingColumnNumber = "9223372036854775807" startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807"
startingLineNumber = "208" startingLineNumber = "202"
endingLineNumber = "208" endingLineNumber = "202"
landmarkName = "cycleVoice()" landmarkName = "cycleVoice()"
landmarkType = "7"> landmarkType = "7">
</BreakpointContent> </BreakpointContent>
@@ -3434,5 +3434,53 @@
landmarkType = "7"> landmarkType = "7">
</BreakpointContent> </BreakpointContent>
</BreakpointProxy> </BreakpointProxy>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
uuid = "0863E7C7-BE5D-4A2C-9EFE-B6CBB991C6B4"
shouldBeEnabled = "No"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "OrderScheduling/Global/Tool/Tool.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "21"
endingLineNumber = "21"
landmarkName = "getDuration(url:)"
landmarkType = "7">
<Locations>
<Location
uuid = "0863E7C7-BE5D-4A2C-9EFE-B6CBB991C6B4 - f890a543ab91c4b9"
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
symbolName = "OrderScheduling.Tool.getVideoDateString(duration: Swift.Int) -&gt; Swift.String"
moduleName = "OrderScheduling"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/zd/Desktop/%E4%B8%AD%E9%81%93%E6%95%91%E6%8F%B4/OrderScheduling/OrderScheduling/Global/Tool/Tool.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "30"
endingLineNumber = "30"
offsetFromSymbolStart = "127">
</Location>
<Location
uuid = "0863E7C7-BE5D-4A2C-9EFE-B6CBB991C6B4 - bcefead7992b2065"
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
symbolName = "OrderScheduling.Tool.getDuration(url: Foundation.URL) -&gt; __C.CMTime"
moduleName = "OrderScheduling"
usesParentBreakpointCondition = "Yes"
urlString = "file:///Users/zd/Desktop/%E4%B8%AD%E9%81%93%E6%95%91%E6%8F%B4/OrderScheduling/OrderScheduling/Global/Tool/Tool.swift"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "30"
endingLineNumber = "30"
offsetFromSymbolStart = "684">
</Location>
</Locations>
</BreakpointContent>
</BreakpointProxy>
</Breakpoints> </Breakpoints>
</Bucket> </Bucket>

View File

@@ -13,17 +13,11 @@ public let TOOL = Tool.default
open class Tool { open class Tool {
public static let `default` = Tool() public static let `default` = Tool()
func getDuration(url:URL) -> CMTime { // duration is deprecated in swift
@objc func getDuration(url:URL) -> CMTime {
let urlAsset = AVURLAsset(url: url) let urlAsset = AVURLAsset(url: url)
var duration : CMTime = CMTime.zero var duration : CMTime = CMTime.zero
// if #available(iOS 16.0, *) { duration = urlAsset.duration
// do {
// duration = try await urlAsset.load(.duration)
// }catch{
// }
// }else{
duration = urlAsset.duration
// }
return duration return duration
} }

View File

@@ -9,8 +9,7 @@ target 'OrderScheduling' do
pod 'CocoaDebug', :configurations => ['Debug'] pod 'CocoaDebug', :configurations => ['Debug']
pod 'ESTabBarController-swift' pod 'ESTabBarController-swift'
pod 'DDCategoryKit_Private',:path => '/Users/zd/Desktop/PodRepository/DDCategoryKit_Private' pod 'DDCategoryKit_Private'
pod 'DDBasicControlsKit_Private'
pod 'DDColorKit_Private' pod 'DDColorKit_Private'
pod 'DDFontKit_Private' pod 'DDFontKit_Private'
pod 'IQKeyboardManagerSwift' pod 'IQKeyboardManagerSwift'
@@ -25,7 +24,7 @@ target 'OrderScheduling' do
pod 'DDNetworkingOfAlamofireKit_Private' pod 'DDNetworkingOfAlamofireKit_Private'
pod 'DDProgressHUDKit_Private' pod 'DDProgressHUDKit_Private'
pod 'JXCategoryView' pod 'JXCategoryView'
pod 'DDControlsKit_Private',:path => '/Users/zd/Desktop/PodRepository/DDControlsKit_Private' pod 'DDControlsKit_Private'
pod 'SwiftEntryKit' pod 'SwiftEntryKit'
pod 'MJRefresh' pod 'MJRefresh'
pod 'DDWebImageKit_Private' pod 'DDWebImageKit_Private'

View File

@@ -12,178 +12,159 @@ PODS:
- AMapLocation-NO-IDFA (>= 2.6.7) - AMapLocation-NO-IDFA (>= 2.6.7)
- CocoaDebug (1.7.7) - CocoaDebug (1.7.7)
- DDAutoUIKit_Private (0.1.3) - DDAutoUIKit_Private (0.1.3)
- DDBasicControlsKit_Private (0.3.1): - DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation (0.3.2)
- DDBasicControlsKit_Private/DDBaseAnimation (= 0.3.1) - DDBasicControlsKit_Private/DDBaseAttributedString (0.3.2):
- DDBasicControlsKit_Private/DDBaseAttributedString (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseButton (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseCollectionView (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseCollectionViewCell (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseImage (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseImageView (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseLabel (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseModel (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseNavigationController (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseScrollView (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseTabBarController (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseTableView (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseTableViewCell (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseTextField (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseTextView (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseView (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseViewController (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseViewModel (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseAnimation (0.3.1):
- DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation (= 0.3.1)
- DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation (0.3.1)
- DDBasicControlsKit_Private/DDBaseAttributedString (0.3.1):
- "DDCategoryKit_Private/NSAttributedString+DDCategory" - "DDCategoryKit_Private/NSAttributedString+DDCategory"
- DDBasicControlsKit_Private/DDBaseButton (0.3.1): - DDBasicControlsKit_Private/DDBaseButton (0.3.2):
- "DDCategoryKit_Private/UIButton+DDCategory" - "DDCategoryKit_Private/UIButton+DDCategory"
- DDBasicControlsKit_Private/DDBaseCollectionView (0.3.1): - DDBasicControlsKit_Private/DDBaseCollectionView (0.3.2):
- "DDCategoryKit_Private/UICollectionView+DDCategory" - "DDCategoryKit_Private/UICollectionView+DDCategory"
- DDBasicControlsKit_Private/DDBaseCollectionViewCell (0.3.1): - DDBasicControlsKit_Private/DDBaseCollectionViewCell (0.3.2):
- "DDCategoryKit_Private/UICollectionViewCell+DDCategory" - "DDCategoryKit_Private/UICollectionViewCell+DDCategory"
- DDBasicControlsKit_Private/DDBaseImage (0.3.1): - DDBasicControlsKit_Private/DDBaseImage (0.3.2):
- "DDCategoryKit_Private/UIImage+DDCategory" - "DDCategoryKit_Private/UIImage+DDCategory"
- DDBasicControlsKit_Private/DDBaseImageView (0.3.1): - DDBasicControlsKit_Private/DDBaseImageView (0.3.2):
- "DDCategoryKit_Private/UIImageView+DDCategory" - "DDCategoryKit_Private/UIImageView+DDCategory"
- DDBasicControlsKit_Private/DDBaseLabel (0.3.1): - DDBasicControlsKit_Private/DDBaseLabel (0.3.2):
- "DDCategoryKit_Private/UILabel+DDCategory" - "DDCategoryKit_Private/UILabel+DDCategory"
- DDBasicControlsKit_Private/DDBaseModel (0.3.1) - DDBasicControlsKit_Private/DDBaseNavigationController (0.3.2):
- DDBasicControlsKit_Private/DDBaseNavigationController (0.3.1):
- DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation - DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation
- "DDCategoryKit_Private/UINavigationController+DDCategory" - "DDCategoryKit_Private/UINavigationController+DDCategory"
- DDLogKit_Private - DDLogKit_Private
- DDBasicControlsKit_Private/DDBaseScrollView (0.3.1): - DDBasicControlsKit_Private/DDBaseScrollView (0.3.2):
- "DDCategoryKit_Private/UIScrollView+DDCategory" - "DDCategoryKit_Private/UIScrollView+DDCategory"
- DDBasicControlsKit_Private/DDBaseTabBarController (0.3.1): - DDBasicControlsKit_Private/DDBaseSwitch (0.3.2):
- DDLogKit_Private - "DDCategoryKit_Private/UISwitch+DDCategory"
- DDBasicControlsKit_Private/DDBaseTableView (0.3.1): - DDBasicControlsKit_Private/DDBaseTableView (0.3.2):
- "DDCategoryKit_Private/UITableView+DDCategory" - "DDCategoryKit_Private/UITableView+DDCategory"
- DDBasicControlsKit_Private/DDBaseTableViewCell (0.3.1): - DDBasicControlsKit_Private/DDBaseTableViewCell (0.3.2):
- "DDCategoryKit_Private/UITableViewCell+DDCategory" - "DDCategoryKit_Private/UITableViewCell+DDCategory"
- DDBasicControlsKit_Private/DDBaseTextField (0.3.1): - DDBasicControlsKit_Private/DDBaseTextField (0.3.2):
- "DDCategoryKit_Private/UITextField+DDCategory" - "DDCategoryKit_Private/UITextField+DDCategory"
- DDBasicControlsKit_Private/DDBaseTextView (0.3.1): - DDBasicControlsKit_Private/DDBaseTextView (0.3.2):
- "DDCategoryKit_Private/UITextView+DDCategory" - "DDCategoryKit_Private/UITextView+DDCategory"
- DDBasicControlsKit_Private/DDBaseView (0.3.1): - DDBasicControlsKit_Private/DDBaseView (0.3.2):
- "DDCategoryKit_Private/UIView+DDCategory" - "DDCategoryKit_Private/UIView+DDCategory"
- DDBasicControlsKit_Private/DDBaseViewController (0.3.1): - DDBasicControlsKit_Private/DDBaseViewController (0.3.2):
- "DDCategoryKit_Private/UIImage+DDCategory" - "DDCategoryKit_Private/UIImage+DDCategory"
- "DDCategoryKit_Private/UIViewController+DDCategory" - "DDCategoryKit_Private/UIViewController+DDCategory"
- DDLogKit_Private - DDLogKit_Private
- DDBasicControlsKit_Private/DDBaseViewModel (0.3.1) - DDCategoryKit_Private (0.5.4):
- DDCategoryKit_Private (0.5.3): - "DDCategoryKit_Private/CALayer+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/CALayer+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/NSAttributedString+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/NSAttributedString+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/NSBundle+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/NSBundle+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/NSObject+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/NSObject+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/NSThread+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/NSThread+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/NSURL+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/NSURL+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIApplication+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIApplication+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIBarButtonItem+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIBarButtonItem+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIButton+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIButton+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UICollectionView+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UICollectionView+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UICollectionViewCell+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UICollectionViewCell+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIFont+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIFont+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIImage+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIImage+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIImageView+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIImageView+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UILabel+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UILabel+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UINavigationBar+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UINavigationBar+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UINavigationController+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UINavigationController+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UINavigationItem+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UINavigationItem+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIScreen+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIScreen+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIScrollView+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIScrollView+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UISwitch+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UITabBarController+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UITabBarController+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UITableView+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UITableView+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UITableViewCell+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UITableViewCell+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UITextField+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UITextField+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UITextView+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UITextView+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIView+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIView+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIViewController+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIViewController+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/UIWindow+DDCategory (= 0.5.3)" - "DDCategoryKit_Private/UIWindow+DDCategory (= 0.5.4)"
- "DDCategoryKit_Private/CALayer+DDCategory (0.5.3)" - "DDCategoryKit_Private/CALayer+DDCategory (0.5.4)"
- "DDCategoryKit_Private/NSAttributedString+DDCategory (0.5.3)" - "DDCategoryKit_Private/NSAttributedString+DDCategory (0.5.4)"
- "DDCategoryKit_Private/NSBundle+DDCategory (0.5.3)" - "DDCategoryKit_Private/NSBundle+DDCategory (0.5.4)"
- "DDCategoryKit_Private/NSObject+DDCategory (0.5.3)" - "DDCategoryKit_Private/NSObject+DDCategory (0.5.4)"
- "DDCategoryKit_Private/NSThread+DDCategory (0.5.3)" - "DDCategoryKit_Private/NSThread+DDCategory (0.5.4)"
- "DDCategoryKit_Private/NSURL+DDCategory (0.5.3)" - "DDCategoryKit_Private/NSURL+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UIApplication+DDCategory (0.5.3)" - "DDCategoryKit_Private/UIApplication+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UIBarButtonItem+DDCategory (0.5.3)" - "DDCategoryKit_Private/UIBarButtonItem+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UIButton+DDCategory (0.5.3)": - "DDCategoryKit_Private/UIButton+DDCategory (0.5.4)":
- "DDCategoryKit_Private/NSObject+DDCategory" - "DDCategoryKit_Private/NSObject+DDCategory"
- "DDCategoryKit_Private/UICollectionView+DDCategory (0.5.3)" - "DDCategoryKit_Private/UICollectionView+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UICollectionViewCell+DDCategory (0.5.3)" - "DDCategoryKit_Private/UICollectionViewCell+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UIFont+DDCategory (0.5.3)" - "DDCategoryKit_Private/UIFont+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UIImage+DDCategory (0.5.3)" - "DDCategoryKit_Private/UIImage+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UIImageView+DDCategory (0.5.3)" - "DDCategoryKit_Private/UIImageView+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UILabel+DDCategory (0.5.3)" - "DDCategoryKit_Private/UILabel+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UINavigationBar+DDCategory (0.5.3)": - "DDCategoryKit_Private/UINavigationBar+DDCategory (0.5.4)":
- "DDCategoryKit_Private/NSObject+DDCategory" - "DDCategoryKit_Private/NSObject+DDCategory"
- "DDCategoryKit_Private/UIViewController+DDCategory" - "DDCategoryKit_Private/UIViewController+DDCategory"
- "DDCategoryKit_Private/UINavigationController+DDCategory (0.5.3)": - "DDCategoryKit_Private/UINavigationController+DDCategory (0.5.4)":
- "DDCategoryKit_Private/NSObject+DDCategory" - "DDCategoryKit_Private/NSObject+DDCategory"
- "DDCategoryKit_Private/UINavigationItem+DDCategory (0.5.3)": - "DDCategoryKit_Private/UINavigationItem+DDCategory (0.5.4)":
- "DDCategoryKit_Private/NSObject+DDCategory" - "DDCategoryKit_Private/NSObject+DDCategory"
- "DDCategoryKit_Private/UIViewController+DDCategory" - "DDCategoryKit_Private/UIViewController+DDCategory"
- "DDCategoryKit_Private/UIScreen+DDCategory (0.5.3)" - "DDCategoryKit_Private/UIScreen+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UIScrollView+DDCategory (0.5.3)" - "DDCategoryKit_Private/UIScrollView+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UITabBarController+DDCategory (0.5.3)": - "DDCategoryKit_Private/UISwitch+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UITabBarController+DDCategory (0.5.4)":
- "DDCategoryKit_Private/NSObject+DDCategory" - "DDCategoryKit_Private/NSObject+DDCategory"
- "DDCategoryKit_Private/UITableView+DDCategory (0.5.3)" - "DDCategoryKit_Private/UITableView+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UITableViewCell+DDCategory (0.5.3)" - "DDCategoryKit_Private/UITableViewCell+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UITextField+DDCategory (0.5.3)" - "DDCategoryKit_Private/UITextField+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UITextView+DDCategory (0.5.3)" - "DDCategoryKit_Private/UITextView+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UIView+DDCategory (0.5.3)" - "DDCategoryKit_Private/UIView+DDCategory (0.5.4)"
- "DDCategoryKit_Private/UIViewController+DDCategory (0.5.3)": - "DDCategoryKit_Private/UIViewController+DDCategory (0.5.4)":
- "DDCategoryKit_Private/NSObject+DDCategory" - "DDCategoryKit_Private/NSObject+DDCategory"
- "DDCategoryKit_Private/UIWindow+DDCategory (0.5.3)" - "DDCategoryKit_Private/UIWindow+DDCategory (0.5.4)"
- DDColorKit_Private (0.1.0) - DDColorKit_Private (0.1.0)
- DDControlsKit_Private (0.1.1): - DDControlsKit_Private (0.1.2):
- DDControlsKit_Private/DDAttributedString (= 0.1.1) - DDControlsKit_Private/DDAttributedString (= 0.1.2)
- DDControlsKit_Private/DDButton (= 0.1.1) - DDControlsKit_Private/DDButton (= 0.1.2)
- DDControlsKit_Private/DDCollectionView (= 0.1.1) - DDControlsKit_Private/DDCollectionView (= 0.1.2)
- DDControlsKit_Private/DDCollectionViewCell (= 0.1.1) - DDControlsKit_Private/DDCollectionViewCell (= 0.1.2)
- DDControlsKit_Private/DDImage (= 0.1.1) - DDControlsKit_Private/DDImage (= 0.1.2)
- DDControlsKit_Private/DDImageView (= 0.1.1) - DDControlsKit_Private/DDImageView (= 0.1.2)
- DDControlsKit_Private/DDLabel (= 0.1.1) - DDControlsKit_Private/DDLabel (= 0.1.2)
- DDControlsKit_Private/DDNavigationController (= 0.1.1) - DDControlsKit_Private/DDNavigationController (= 0.1.2)
- DDControlsKit_Private/DDScrollView (= 0.1.1) - DDControlsKit_Private/DDScrollView (= 0.1.2)
- DDControlsKit_Private/DDTableView (= 0.1.1) - DDControlsKit_Private/DDSwitch (= 0.1.2)
- DDControlsKit_Private/DDTableViewCell (= 0.1.1) - DDControlsKit_Private/DDTableView (= 0.1.2)
- DDControlsKit_Private/DDTextField (= 0.1.1) - DDControlsKit_Private/DDTableViewCell (= 0.1.2)
- DDControlsKit_Private/DDTextView (= 0.1.1) - DDControlsKit_Private/DDTextField (= 0.1.2)
- DDControlsKit_Private/DDView (= 0.1.1) - DDControlsKit_Private/DDTextView (= 0.1.2)
- DDControlsKit_Private/DDViewController (= 0.1.1) - DDControlsKit_Private/DDView (= 0.1.2)
- DDControlsKit_Private/DDAttributedString (0.1.1): - DDControlsKit_Private/DDViewController (= 0.1.2)
- DDControlsKit_Private/DDAttributedString (0.1.2):
- DDBasicControlsKit_Private/DDBaseAttributedString - DDBasicControlsKit_Private/DDBaseAttributedString
- DDControlsKit_Private/DDButton (0.1.1): - DDControlsKit_Private/DDButton (0.1.2):
- DDBasicControlsKit_Private/DDBaseButton - DDBasicControlsKit_Private/DDBaseButton
- DDControlsKit_Private/DDCollectionView (0.1.1): - DDControlsKit_Private/DDCollectionView (0.1.2):
- DDBasicControlsKit_Private/DDBaseCollectionView - DDBasicControlsKit_Private/DDBaseCollectionView
- DDControlsKit_Private/DDCollectionViewCell (0.1.1): - DDControlsKit_Private/DDCollectionViewCell (0.1.2):
- DDBasicControlsKit_Private/DDBaseCollectionViewCell - DDBasicControlsKit_Private/DDBaseCollectionViewCell
- DDControlsKit_Private/DDImage (0.1.1): - DDControlsKit_Private/DDImage (0.1.2):
- DDBasicControlsKit_Private/DDBaseImage - DDBasicControlsKit_Private/DDBaseImage
- DDControlsKit_Private/DDImageView (0.1.1): - DDControlsKit_Private/DDImageView (0.1.2):
- DDBasicControlsKit_Private/DDBaseImageView - DDBasicControlsKit_Private/DDBaseImageView
- DDControlsKit_Private/DDLabel (0.1.1): - DDControlsKit_Private/DDLabel (0.1.2):
- DDBasicControlsKit_Private/DDBaseLabel - DDBasicControlsKit_Private/DDBaseLabel
- DDControlsKit_Private/DDNavigationController (0.1.1): - DDControlsKit_Private/DDNavigationController (0.1.2):
- DDBasicControlsKit_Private/DDBaseNavigationController - DDBasicControlsKit_Private/DDBaseNavigationController
- DDControlsKit_Private/DDScrollView (0.1.1): - DDControlsKit_Private/DDScrollView (0.1.2):
- DDBasicControlsKit_Private/DDBaseScrollView - DDBasicControlsKit_Private/DDBaseScrollView
- DDControlsKit_Private/DDTableView (0.1.1): - DDControlsKit_Private/DDSwitch (0.1.2):
- DDBasicControlsKit_Private/DDBaseSwitch
- DDControlsKit_Private/DDTableView (0.1.2):
- DDBasicControlsKit_Private/DDBaseTableView - DDBasicControlsKit_Private/DDBaseTableView
- DDControlsKit_Private/DDTableViewCell (0.1.1): - DDControlsKit_Private/DDTableViewCell (0.1.2):
- DDBasicControlsKit_Private/DDBaseTableViewCell - DDBasicControlsKit_Private/DDBaseTableViewCell
- DDControlsKit_Private/DDTextField (0.1.1): - DDControlsKit_Private/DDTextField (0.1.2):
- DDBasicControlsKit_Private/DDBaseTextField - DDBasicControlsKit_Private/DDBaseTextField
- DDControlsKit_Private/DDTextView (0.1.1): - DDControlsKit_Private/DDTextView (0.1.2):
- DDBasicControlsKit_Private/DDBaseTextView - DDBasicControlsKit_Private/DDBaseTextView
- DDControlsKit_Private/DDView (0.1.1): - DDControlsKit_Private/DDView (0.1.2):
- DDBasicControlsKit_Private/DDBaseView - DDBasicControlsKit_Private/DDBaseView
- DDControlsKit_Private/DDViewController (0.1.1): - DDControlsKit_Private/DDViewController (0.1.2):
- DDBasicControlsKit_Private/DDBaseViewController - DDBasicControlsKit_Private/DDBaseViewController
- DDFontKit_Private (0.1.0) - DDFontKit_Private (0.1.0)
- DDLogKit_Private (0.1.4): - DDLogKit_Private (0.1.4):
@@ -303,10 +284,9 @@ PODS:
DEPENDENCIES: DEPENDENCIES:
- CocoaDebug - CocoaDebug
- DDAutoUIKit_Private - DDAutoUIKit_Private
- DDBasicControlsKit_Private - DDCategoryKit_Private
- DDCategoryKit_Private (from `/Users/zd/Desktop/PodRepository/DDCategoryKit_Private`)
- DDColorKit_Private - DDColorKit_Private
- DDControlsKit_Private (from `/Users/zd/Desktop/PodRepository/DDControlsKit_Private`) - DDControlsKit_Private
- DDFontKit_Private - DDFontKit_Private
- DDMAMapKit_Private - DDMAMapKit_Private
- DDNetworkingOfAlamofireKit_Private - DDNetworkingOfAlamofireKit_Private
@@ -333,7 +313,9 @@ SPEC REPOS:
"git@github.com:DDIsFriend/DDSpecs.git": "git@github.com:DDIsFriend/DDSpecs.git":
- DDAutoUIKit_Private - DDAutoUIKit_Private
- DDBasicControlsKit_Private - DDBasicControlsKit_Private
- DDCategoryKit_Private
- DDColorKit_Private - DDColorKit_Private
- DDControlsKit_Private
- DDFontKit_Private - DDFontKit_Private
- DDLogKit_Private - DDLogKit_Private
- DDMAMapKit_Private - DDMAMapKit_Private
@@ -367,12 +349,6 @@ SPEC REPOS:
- ZFPlayer - ZFPlayer
- ZLPhotoBrowser - ZLPhotoBrowser
EXTERNAL SOURCES:
DDCategoryKit_Private:
:path: "/Users/zd/Desktop/PodRepository/DDCategoryKit_Private"
DDControlsKit_Private:
:path: "/Users/zd/Desktop/PodRepository/DDControlsKit_Private"
SPEC CHECKSUMS: SPEC CHECKSUMS:
Alamofire: 0123a34370cb170936ae79a8df46cc62b2edeb88 Alamofire: 0123a34370cb170936ae79a8df46cc62b2edeb88
AMapFoundation-NO-IDFA: 6ce0ef596d4eb8d934ff498e56747b6de1247b05 AMapFoundation-NO-IDFA: 6ce0ef596d4eb8d934ff498e56747b6de1247b05
@@ -382,10 +358,10 @@ SPEC CHECKSUMS:
AMapTrack-NO-IDFA: 7109cf1867f5d6c407c8191492b1f73101e1682e AMapTrack-NO-IDFA: 7109cf1867f5d6c407c8191492b1f73101e1682e
CocoaDebug: b38d31464b91a9775928f8667d114db07b136565 CocoaDebug: b38d31464b91a9775928f8667d114db07b136565
DDAutoUIKit_Private: 188066b4d13c8096676ddd9efa15974238f6dca3 DDAutoUIKit_Private: 188066b4d13c8096676ddd9efa15974238f6dca3
DDBasicControlsKit_Private: 04e64a24551a24e76555835fc14002415db80f94 DDBasicControlsKit_Private: d3aebc505eaac273a8f6b85238662ad6e64a1a08
DDCategoryKit_Private: 03994d39831cb9b49670ae9544e33ff408276051 DDCategoryKit_Private: 19d515c43d5e9c4ee80b8ccf3fb8ab40368b8668
DDColorKit_Private: 77fddb62410a2d5e6fb003083d233c0d7ea0a08f DDColorKit_Private: 77fddb62410a2d5e6fb003083d233c0d7ea0a08f
DDControlsKit_Private: d121dabf9283ed8c411eb30c8f8632db2a7443da DDControlsKit_Private: c3ac79b391cec6ecb26262a0d3b02718f696ab19
DDFontKit_Private: 7b8f4ebf0f60622874036202734d8460dc7b3806 DDFontKit_Private: 7b8f4ebf0f60622874036202734d8460dc7b3806
DDLogKit_Private: 1ed442cc7be004bd05f27bfda9b525e113df54e0 DDLogKit_Private: 1ed442cc7be004bd05f27bfda9b525e113df54e0
DDMAMapKit_Private: fda2942ba7a3b7da4d440e59a89db9fd6708d842 DDMAMapKit_Private: fda2942ba7a3b7da4d440e59a89db9fd6708d842
@@ -411,6 +387,6 @@ SPEC CHECKSUMS:
ZFPlayer: 5cf39e8d9f0c2394a014b0db4767b5b5a6bffe13 ZFPlayer: 5cf39e8d9f0c2394a014b0db4767b5b5a6bffe13
ZLPhotoBrowser: 0563c2bfc7b247b65d023d646012f46cba94101b ZLPhotoBrowser: 0563c2bfc7b247b65d023d646012f46cba94101b
PODFILE CHECKSUM: 2c450a773b0b1200134ae26511b9293c7e211058 PODFILE CHECKSUM: a50398c9fdc8f5753f43e8d3315d35e180ab0c05
COCOAPODS: 1.11.3 COCOAPODS: 1.11.3

BIN
Pods/AMapNavi-NO-IDFA/.DS_Store generated vendored

Binary file not shown.

View File

@@ -1,15 +0,0 @@
//
// DDBaseModel.h
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2023/2/10.
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface DDBaseModel : NSObject
@end
NS_ASSUME_NONNULL_END

View File

@@ -1,11 +0,0 @@
//
// DDBaseModel.m
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2023/2/10.
#import "DDBaseModel.h"
@implementation DDBaseModel
@end

View File

@@ -0,0 +1,15 @@
//
// DDBaseSwitch.h
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2023/8/31.
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface DDBaseSwitch : UISwitch
@end
NS_ASSUME_NONNULL_END

View File

@@ -0,0 +1,19 @@
//
// DDBaseSwitch.m
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2023/8/31.
#import "DDBaseSwitch.h"
@implementation DDBaseSwitch
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
// Drawing code
}
*/
@end

View File

@@ -1,15 +0,0 @@
//
// DDBaseTabBarController.h
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2022/11/7.
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface DDBaseTabBarController : UITabBarController
@end
NS_ASSUME_NONNULL_END

View File

@@ -1,45 +0,0 @@
//
// DDBaseTabBarController.m
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2022/11/7.
#import "DDBaseTabBarController.h"
@interface DDBaseTabBarController ()
@end
@implementation DDBaseTabBarController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
}
// MARK: <UIStatusBarStyle>
//- (UIStatusBarStyle)preferredStatusBarStyle{
// return UIStatusBarStyleDefault;
//}
// override this method will instead - (UIStatusBarStyle)preferredStatusBarStyle.
- (UIViewController *)childViewControllerForStatusBarStyle{
return self.selectedViewController;
}
- (UIViewController *)childViewControllerForStatusBarHidden{
return self.selectedViewController;
}
// MARK: <Orientations>
- (BOOL)shouldAutorotate{
return self.selectedViewController.shouldAutorotate;
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
return self.selectedViewController.supportedInterfaceOrientations;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{
return self.selectedViewController.preferredInterfaceOrientationForPresentation;
}
@end

View File

@@ -88,6 +88,7 @@
- (nullable NSArray<UIBarButtonItem *> *)dd_backBarButtonItem:(nonnull UIBarButtonItem *)backBarButtonItem WithOtherItems:(nullable NSArray<UIBarButtonItem *> *)items{ - (nullable NSArray<UIBarButtonItem *> *)dd_backBarButtonItem:(nonnull UIBarButtonItem *)backBarButtonItem WithOtherItems:(nullable NSArray<UIBarButtonItem *> *)items{
_dd_backBarButtonItem = backBarButtonItem; _dd_backBarButtonItem = backBarButtonItem;
UIBarButtonItem *flexibleSpaceItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil]; UIBarButtonItem *flexibleSpaceItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
NSArray *backItems = [[NSArray arrayWithObjects:backBarButtonItem,flexibleSpaceItem, nil] arrayByAddingObjectsFromArray:items]; NSArray *backItems = [[NSArray arrayWithObjects:backBarButtonItem,flexibleSpaceItem, nil] arrayByAddingObjectsFromArray:items];

View File

@@ -1,15 +0,0 @@
//
// DDBaseViewModel.h
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2023/2/10.
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface DDBaseViewModel : NSObject
@end
NS_ASSUME_NONNULL_END

View File

@@ -1,11 +0,0 @@
//
// DDBaseViewModel.m
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2023/2/10.
#import "DDBaseViewModel.h"
@implementation DDBaseViewModel
@end

View File

@@ -1,29 +0,0 @@
//
// DDBasicControls.h
// DDBasicControlsKit_Private
// Created by DDIsFriend on 2023/2/13.
#ifndef DDBasicControls_h
#define DDBasicControls_h
#import <DDBasicControlsKit_Private/DDBaseAttributedString.h>
#import <DDBasicControlsKit_Private/DDBaseButton.h>
#import <DDBasicControlsKit_Private/DDBaseCollectionView.h>
#import <DDBasicControlsKit_Private/DDBaseCollectionViewCell.h>
#import <DDBasicControlsKit_Private/DDBaseImage.h>
#import <DDBasicControlsKit_Private/DDBaseImageView.h>
#import <DDBasicControlsKit_Private/DDBaseLabel.h>
#import <DDBasicControlsKit_Private/DDBaseModel.h>
#import <DDBasicControlsKit_Private/DDBaseNavigationController.h>
#import <DDBasicControlsKit_Private/DDBaseScrollView.h>
#import <DDBasicControlsKit_Private/DDBaseTabBarController.h>
#import <DDBasicControlsKit_Private/DDBaseTableView.h>
#import <DDBasicControlsKit_Private/DDBaseTableViewCell.h>
#import <DDBasicControlsKit_Private/DDBaseTextField.h>
#import <DDBasicControlsKit_Private/DDBaseTextView.h>
#import <DDBasicControlsKit_Private/DDBaseView.h>
#import <DDBasicControlsKit_Private/DDBaseViewController.h>
#import <DDBasicControlsKit_Private/DDBaseViewModel.h>
#endif /* DDBasicControls_h */

View File

@@ -5,6 +5,8 @@
#import <UIKit/UIKit.h> #import <UIKit/UIKit.h>
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#import <AVFoundation/AVTime.h>
NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN
typedef NSString *DDWaterMarkInfoName NS_TYPED_EXTENSIBLE_ENUM; typedef NSString *DDWaterMarkInfoName NS_TYPED_EXTENSIBLE_ENUM;
@@ -24,6 +26,8 @@ FOUNDATION_EXPORT DDWaterMarkInfoName const DDWaterMarkLayoutRight;
*/ */
+ (UIImage *)dd_thumbnailImageForVideo:(NSURL *)videoURL; + (UIImage *)dd_thumbnailImageForVideo:(NSURL *)videoURL;
+ (void)dd_thumbnailImageForVideo:(NSURL *)videoURL completionHandler:(void (^)(UIImage * _Nullable image, CMTime actualTime, NSError * _Nullable error))handler;
/// @brief return a compressed image /// @brief return a compressed image
/// @param maxLength bytes = 1024 * (kb) /// @param maxLength bytes = 1024 * (kb)
- (UIImage *)dd_compressWithQulitySize:(NSInteger)maxLength; - (UIImage *)dd_compressWithQulitySize:(NSInteger)maxLength;

View File

@@ -6,7 +6,7 @@
#import "UIImage+DDCategory.h" #import "UIImage+DDCategory.h"
#import <AVFoundation/AVAsset.h> #import <AVFoundation/AVAsset.h>
#import <CoreMedia/CoreMedia.h> #import <CoreMedia/CoreMedia.h>
#import <AVFoundation/AVFoundation.h> #import <AVFoundation/AVAssetImageGenerator.h>
DDWaterMarkInfoName const DDWaterMarkInfoText = @"DDWaterMarkInfoText"; DDWaterMarkInfoName const DDWaterMarkInfoText = @"DDWaterMarkInfoText";
DDWaterMarkInfoName const DDWaterMarkInfoAttributes = @"DDWaterMarkInfoAttributes"; DDWaterMarkInfoName const DDWaterMarkInfoAttributes = @"DDWaterMarkInfoAttributes";
@@ -18,23 +18,45 @@ DDWaterMarkInfoName const DDWaterMarkLayoutRight = @"DDWaterMarkLayoutRight";
@implementation UIImage (DDCategory) @implementation UIImage (DDCategory)
+ (UIImage *)dd_thumbnailImageForVideo:(NSURL *)videoURL{ + (UIImage *)dd_thumbnailImageForVideo:(NSURL *)videoURL{
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURL options:nil]; AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURL options:nil];
NSParameterAssert(asset); if (asset.duration.value == 0) {
AVAssetImageGenerator *assetImageGenerator =[[AVAssetImageGenerator alloc] initWithAsset:asset]; return nil;
assetImageGenerator.appliesPreferredTrackTransform = YES; }
assetImageGenerator.apertureMode =AVAssetImageGeneratorApertureModeEncodedPixels;
CGImageRef thumbnailImageRef = NULL; AVAssetImageGenerator *assetImageGenerator = [[AVAssetImageGenerator alloc] initWithAsset:asset];
// CFTimeInterval thumbnailImageTime = 1; assetImageGenerator.appliesPreferredTrackTransform = YES;
NSError *thumbnailImageGenerationError = nil; assetImageGenerator.requestedTimeToleranceAfter = kCMTimeZero;
thumbnailImageRef = [assetImageGenerator copyCGImageAtTime:CMTimeMake(0, 1) actualTime:NULL error:&thumbnailImageGenerationError]; assetImageGenerator.requestedTimeToleranceBefore = kCMTimeZero;
NSAssert(thumbnailImageRef, @"thumbnailImageGenerationError"); CGImageRef thumbnailImageRef = NULL;
NSError *thumbnailImageGenerationError = nil;
thumbnailImageRef = [assetImageGenerator copyCGImageAtTime:CMTimeMake(0, 600) actualTime:NULL error:&thumbnailImageGenerationError];
UIImage *thumbnailImage = thumbnailImageRef ? [[UIImage alloc] initWithCGImage:thumbnailImageRef] : nil; UIImage *thumbnailImage = thumbnailImageRef ? [[UIImage alloc] initWithCGImage:thumbnailImageRef] : nil;
return thumbnailImage;
return thumbnailImage;
} }
+ (void)dd_thumbnailImageForVideo:(NSURL *)videoURL completionHandler:(void (^)(UIImage * _Nullable image, CMTime actualTime, NSError * _Nullable error))handler {
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:videoURL options:nil];
if (asset.duration.value == 0) {
return;
}
AVAssetImageGenerator *assetImageGenerator = [[AVAssetImageGenerator alloc] initWithAsset:asset];
assetImageGenerator.appliesPreferredTrackTransform = YES;
assetImageGenerator.requestedTimeToleranceAfter = kCMTimeZero;
assetImageGenerator.requestedTimeToleranceBefore = kCMTimeZero;
[assetImageGenerator generateCGImagesAsynchronouslyForTimes:@[[NSValue valueWithCMTime:CMTimeMake(0, 600)]] completionHandler:^(CMTime requestedTime, CGImageRef _Nullable image, CMTime actualTime, AVAssetImageGeneratorResult result, NSError * _Nullable error) {
UIImage *thumbnailImage = image ? [[UIImage alloc] initWithCGImage:image] : nil;
if (handler != nil) {
handler(thumbnailImage,actualTime,error);
}
}];
}
- (UIImage *)dd_compressWithQulitySize:(NSInteger)maxLength { - (UIImage *)dd_compressWithQulitySize:(NSInteger)maxLength {
// Compress by quality // Compress by quality
CGFloat compression = 1; CGFloat compression = 1;

View File

@@ -0,0 +1,15 @@
//
// UISwitch+DDCategory.h
// DDCategoryKit_Private
// Created by DDIsFriend on 2023/8/30.
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface UISwitch (DDCategory)
@end
NS_ASSUME_NONNULL_END

View File

@@ -0,0 +1,11 @@
//
// UISwitch+DDCategory.m
// DDCategoryKit_Private
// Created by DDIsFriend on 2023/8/30.
#import "UISwitch+DDCategory.h"
@implementation UISwitch (DDCategory)
@end

View File

@@ -0,0 +1,14 @@
//
// DDSwitch.swift
// DDControlsKit_Private
//
// Created by on 2023/8/31.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseSwitch
import DDCategoryKit_Private.UISwitch_DDCategory
open class DDSwitch : DDBaseSwitch {
}

View File

@@ -22,8 +22,6 @@ open class DDViewController: DDBaseViewController {
open override func viewDidLoad() { open override func viewDidLoad() {
super.viewDidLoad() super.viewDidLoad()
dd_navigationBarBackgroundColor = .white
dd_navigationBarBarButtonItemAttributes = [.foregroundColor : UIColor.white]
view.backgroundColor = .white view.backgroundColor = .white
extendedLayoutIncludesOpaqueBars = true extendedLayoutIncludesOpaqueBars = true
edgesForExtendedLayout = [.all] edgesForExtendedLayout = [.all]

View File

@@ -1 +0,0 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.h

View File

@@ -0,0 +1 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.h

View File

@@ -1 +0,0 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.h

View File

@@ -1 +0,0 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.h

View File

@@ -1 +0,0 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBasicControls.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSURL+DDCategory/NSURL+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.h

View File

@@ -0,0 +1 @@
../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.h

View File

@@ -1 +0,0 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.h

View File

@@ -0,0 +1 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.h

View File

@@ -1 +0,0 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.h

View File

@@ -1 +0,0 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.h

View File

@@ -1 +0,0 @@
../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBasicControls.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSURL+DDCategory/NSURL+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.h

View File

@@ -0,0 +1 @@
../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.h

View File

@@ -1 +1 @@
../../../../../../PodRepository/DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.h ../../../DDCategoryKit_Private/DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.h

BIN
Pods/JCore/.DS_Store generated vendored

Binary file not shown.

BIN
Pods/JPush/.DS_Store generated vendored

Binary file not shown.

View File

@@ -1,177 +0,0 @@
{
"name": "DDCategoryKit_Private",
"version": "0.5.3",
"summary": "A short description of DDCategoryKit_Private.",
"description": "TODO: Add long description of the pod here.",
"homepage": "https://github.com/DDIsFriend/DDCategoryKit_Private",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"DDIsFriend": "DDIsFriend@163.com"
},
"source": {
"git": "git@github.com:DDIsFriend/DDCategoryKit_Private.git",
"tag": "0.5.3"
},
"platforms": {
"ios": "11.0"
},
"source_files": "DDCategoryKit_Private/Classes/DDCategory.h",
"pod_target_xcconfig": {
"VALID_ARCHS": "x86_64 armv7 arm64",
"EXCLUDED_ARCHS[sdk=iphonesimulator*]": "arm64",
"OTHER_LINKER_FLAGS": "$(inherited)"
},
"subspecs": [
{
"name": "UILabel+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.{h,m}"
},
{
"name": "NSAttributedString+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/*.{h,m}"
},
{
"name": "UIButton+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.{h,m}",
"dependencies": {
"DDCategoryKit_Private/NSObject+DDCategory": [
]
}
},
{
"name": "UIView+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.{h,m}"
},
{
"name": "CALayer+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.{h,m}"
},
{
"name": "NSObject+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.{h,m}"
},
{
"name": "UIImage+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.{h,m}"
},
{
"name": "NSBundle+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.{h,m}"
},
{
"name": "UIViewController+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.{h,m}",
"dependencies": {
"DDCategoryKit_Private/NSObject+DDCategory": [
]
}
},
{
"name": "UINavigationController+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UINavigationController+DDCategory/*.{h,m}",
"dependencies": {
"DDCategoryKit_Private/NSObject+DDCategory": [
]
}
},
{
"name": "UITabBarController+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UITabBarController+DDCategory/*.{h,m}",
"dependencies": {
"DDCategoryKit_Private/NSObject+DDCategory": [
]
}
},
{
"name": "UINavigationBar+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/*.{h,m}",
"dependencies": {
"DDCategoryKit_Private/NSObject+DDCategory": [
],
"DDCategoryKit_Private/UIViewController+DDCategory": [
]
}
},
{
"name": "UINavigationItem+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/*.{h,m}",
"dependencies": {
"DDCategoryKit_Private/NSObject+DDCategory": [
],
"DDCategoryKit_Private/UIViewController+DDCategory": [
]
}
},
{
"name": "NSThread+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/NSThread+DDCategory/*.{h,m}"
},
{
"name": "UIApplication+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIApplication+DDCategory/*.{h,m}"
},
{
"name": "UIWindow+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIWindow+DDCategory/*.{h,m}"
},
{
"name": "UIScreen+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIScreen+DDCategory/*.{h,m}"
},
{
"name": "NSURL+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/NSURL+DDCategory/*.{h,m}"
},
{
"name": "UIFont+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIFont+DDCategory/*.{h,m}"
},
{
"name": "UIBarButtonItem+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/*.{h,m}"
},
{
"name": "UITableView+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UITableView+DDCategory/*.{h,m}"
},
{
"name": "UITableViewCell+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/*.{h,m}"
},
{
"name": "UICollectionView+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UICollectionView+DDCategory/*.{h,m}"
},
{
"name": "UICollectionViewCell+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/*.{h,m}"
},
{
"name": "UIImageView+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIImageView+DDCategory/*.{h,m}"
},
{
"name": "UITextField+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UITextField+DDCategory/*.{h,m}"
},
{
"name": "UITextView+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UITextView+DDCategory/*.{h,m}"
},
{
"name": "UIScrollView+DDCategory",
"source_files": "DDCategoryKit_Private/Classes/UIScrollView+DDCategory/*.{h,m}"
}
]
}

View File

@@ -1,164 +0,0 @@
{
"name": "DDControlsKit_Private",
"version": "0.1.1",
"summary": "A short description of DDControlsKit_Private.",
"description": "TODO: Add long description of the pod here.",
"homepage": "https://github.com/DDIsFriend/DDControlsKit_Private",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"DDIsFriend": "DDIsFriend@163.com"
},
"source": {
"git": "git@github.com:DDIsFriend/DDControlsKit_Private.git",
"tag": "0.1.1"
},
"platforms": {
"ios": "11.0"
},
"source_files": "DDControlsKit_Private/Classes/**/*",
"pod_target_xcconfig": {
"VALID_ARCHS": "x86_64 armv7 arm64",
"EXCLUDED_ARCHS[sdk=iphonesimulator*]": "arm64",
"OTHER_LINKER_FLAGS": "$(inherited)"
},
"subspecs": [
{
"name": "DDButton",
"source_files": "DDControlsKit_Private/Classes/DDButton/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseButton": [
]
}
},
{
"name": "DDLabel",
"source_files": "DDControlsKit_Private/Classes/DDLabel/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseLabel": [
]
}
},
{
"name": "DDTableView",
"source_files": "DDControlsKit_Private/Classes/DDTableView/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseTableView": [
]
}
},
{
"name": "DDTableViewCell",
"source_files": "DDControlsKit_Private/Classes/DDTableViewCell/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseTableViewCell": [
]
}
},
{
"name": "DDViewController",
"source_files": "DDControlsKit_Private/Classes/DDViewController/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseViewController": [
]
}
},
{
"name": "DDView",
"source_files": "DDControlsKit_Private/Classes/DDView/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseView": [
]
}
},
{
"name": "DDImage",
"source_files": "DDControlsKit_Private/Classes/DDImage/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseImage": [
]
}
},
{
"name": "DDImageView",
"source_files": "DDControlsKit_Private/Classes/DDImageView/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseImageView": [
]
}
},
{
"name": "DDTextField",
"source_files": "DDControlsKit_Private/Classes/DDTextField/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseTextField": [
]
}
},
{
"name": "DDTextView",
"source_files": "DDControlsKit_Private/Classes/DDTextView/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseTextView": [
]
}
},
{
"name": "DDNavigationController",
"source_files": "DDControlsKit_Private/Classes/DDNavigationController/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseNavigationController": [
]
}
},
{
"name": "DDAttributedString",
"source_files": "DDControlsKit_Private/Classes/DDAttributedString/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseAttributedString": [
]
}
},
{
"name": "DDScrollView",
"source_files": "DDControlsKit_Private/Classes/DDScrollView/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseScrollView": [
]
}
},
{
"name": "DDCollectionView",
"source_files": "DDControlsKit_Private/Classes/DDCollectionView/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseCollectionView": [
]
}
},
{
"name": "DDCollectionViewCell",
"source_files": "DDControlsKit_Private/Classes/DDCollectionViewCell/*",
"dependencies": {
"DDBasicControlsKit_Private/DDBaseCollectionViewCell": [
]
}
}
]
}

Some files were not shown because too many files have changed in this diff Show More