This commit is contained in:
DDIsFriend
2023-08-18 17:28:57 +08:00
commit f0e8a1709d
4282 changed files with 192396 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
//
// DDAttributedString.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/22.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseAttributedString
open class DDAttributedString: DDBaseAttributedString {
}

View File

@@ -0,0 +1,13 @@
//
// DDMutableAttributedString.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/22.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseMutableAttributedString
open class DDMutableAttributedString: DDBaseMutableAttributedString {
}

View File

@@ -0,0 +1,13 @@
//
// DDButton.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/13.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseButton
open class DDButton: DDBaseButton {
}

View File

@@ -0,0 +1,13 @@
//
// DDCollectionView.swift
// OrderScheduling
//
// Created by on 2023/8/8.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseCollectionView
open class DDCollectionView : DDBaseCollectionView {
}

View File

@@ -0,0 +1,13 @@
//
// DDCollectionViewCell.swift
// OrderScheduling
//
// Created by on 2023/8/8.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseCollectionViewCell
open class DDCollectionViewCell : DDBaseCollectionViewCell {
}

View File

@@ -0,0 +1,13 @@
//
// DDImage.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/15.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseImage
open class DDImage: DDBaseImage {
}

View File

@@ -0,0 +1,13 @@
//
// DDImageView.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/15.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseImageView
open class DDImageView: DDBaseImageView {
}

View File

@@ -0,0 +1,13 @@
//
// DDLabel.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/13.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseLabel
open class DDLabel: DDBaseLabel {
}

View File

@@ -0,0 +1,13 @@
//
// DDNavigationController.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/21.
//
import Foundation
import DDBasicControlsKit_Private
open class DDNavigationController: DDBaseNavigationController {
}

View File

@@ -0,0 +1,13 @@
//
// DDScrollView.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/26.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseScrollView
open class DDScrollView: DDBaseScrollView {
}

View File

@@ -0,0 +1,19 @@
//
// File.swift
// HichefuOfDriverHome
//
// Created by on 2023/2/10.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseTableView
open class DDTableView: DDBaseTableView {
public override init(frame: CGRect, style: UITableView.Style) {
super.init(frame: frame, style: style)
}
required public init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}

View File

@@ -0,0 +1,21 @@
//
// DDTableViewCell.swift
// HichefuOfDriverHome
//
// Created by on 2023/2/15.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseTableViewCell
open class DDTableViewCell : DDBaseTableViewCell {
public override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
}
required public init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}

View File

@@ -0,0 +1,13 @@
//
// DDTextFieldView.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/21.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseTextField
open class DDTextField : DDBaseTextField {
}

View File

@@ -0,0 +1,13 @@
//
// DDTextView.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/22.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseTextView
open class DDTextView: DDBaseTextView {
}

View File

@@ -0,0 +1,22 @@
//
// DDView.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/15.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseView
open class DDView: DDBaseView {
public override init(frame: CGRect) {
super.init(frame: frame)
}
required public init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}

View File

@@ -0,0 +1,49 @@
//
// DDViewController.swift
// HichefuOfDriverCustomizeControls
//
// Created by on 2023/2/13.
//
import Foundation
import DDBasicControlsKit_Private.DDBaseViewController
import DDCategoryKit_Private
open class DDViewController: DDBaseViewController {
public override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
}
public required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
open override func viewDidLoad() {
super.viewDidLoad()
dd_navigationBarBackgroundColor = .white
dd_navigationBarBarButtonItemAttributes = [.foregroundColor : UIColor.white]
view.backgroundColor = .white
extendedLayoutIncludesOpaqueBars = true
edgesForExtendedLayout = [.all]
}
open override var preferredStatusBarStyle: UIStatusBarStyle{
get{
return .lightContent
}
}
open override var shouldAutorotate: Bool {
return false
}
open override var supportedInterfaceOrientations: UIInterfaceOrientationMask{
return .portrait
}
open override var preferredInterfaceOrientationForPresentation: UIInterfaceOrientation{
return .portrait
}
}

19
Pods/DDControlsKit_Private/LICENSE generated Normal file
View File

@@ -0,0 +1,19 @@
Copyright (c) 2023 DDIsFriend <DDIsFriend@163.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

29
Pods/DDControlsKit_Private/README.md generated Normal file
View File

@@ -0,0 +1,29 @@
# DDControlsKit_Private
[![CI Status](https://img.shields.io/travis/DDIsFriend/DDControlsKit_Private.svg?style=flat)](https://travis-ci.org/DDIsFriend/DDControlsKit_Private)
[![Version](https://img.shields.io/cocoapods/v/DDControlsKit_Private.svg?style=flat)](https://cocoapods.org/pods/DDControlsKit_Private)
[![License](https://img.shields.io/cocoapods/l/DDControlsKit_Private.svg?style=flat)](https://cocoapods.org/pods/DDControlsKit_Private)
[![Platform](https://img.shields.io/cocoapods/p/DDControlsKit_Private.svg?style=flat)](https://cocoapods.org/pods/DDControlsKit_Private)
## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Requirements
## Installation
DDControlsKit_Private is available through [CocoaPods](https://cocoapods.org). To install
it, simply add the following line to your Podfile:
```ruby
pod 'DDControlsKit_Private'
```
## Author
DDIsFriend, DDIsFriend@163.com
## License
DDControlsKit_Private is available under the MIT license. See the LICENSE file for more info.