Skip to content

Commit 7844468

Browse files
authored
Merge pull request #68 from RakuyoKit/feature/enhance
Feature/enhance
2 parents c06925c + 2c26b2d commit 7844468

File tree

153 files changed

+165
-165
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+165
-165
lines changed

Examples/Demo/RakuyoKitDemo/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKitDemo
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import UIKit

Examples/Demo/RakuyoKitDemo/SceneDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKitDemo
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import UIKit

Examples/Demo/RakuyoKitDemo/ViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKitDemo
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import UIKit

Sources/Base/Controller/BaseNavigationController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
#if !os(watchOS)

Sources/Base/Controller/BaseViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
#if !os(watchOS)

Sources/Base/Controller/NavigationControllerPopDelegateProxy.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
#if !os(watchOS) && !os(tvOS)

Sources/Base/Controller/RotatableViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
#if !os(watchOS)

Sources/Base/View/BaseView.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/5/24.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
#if !os(watchOS)

Sources/Base/View/Cell/BaseCollectionViewCell.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

9+
#if !os(watchOS)
910
import UIKit
1011

11-
#if !os(watchOS)
1212
@objc(RAKBaseCollectionViewCell)
1313
open class BaseCollectionViewCell: UICollectionViewCell {
1414
public typealias View = UICollectionView

Sources/Base/View/Cell/BaseTableViewCell.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

9+
#if !os(watchOS)
910
import UIKit
1011

11-
#if !os(watchOS)
1212
@objc(RAKBaseTableViewCell)
1313
open class BaseTableViewCell: UITableViewCell {
1414
public typealias View = UITableView

Sources/Base/View/Cell/FinalFastCell.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

9+
#if !os(watchOS)
910
import UIKit
1011

11-
#if !os(watchOS)
1212
/// Used directly in certain scenarios as a replacement for `UITableViewCell`.
1313
public final class FastTableViewCell: BaseTableViewCell, FastCell { }
1414

Sources/Base/View/Fast/FastCell.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

9+
#if !os(watchOS)
910
import UIKit
1011

11-
#if !os(watchOS)
1212
/// A protocol used to quickly create Cells in conjunction with `FastListView`.
1313
public protocol FastCell: UIView {
1414
typealias ConfigClosure = (Self) -> Void

Sources/Base/View/Fast/FastListView.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

9+
#if !os(watchOS)
910
import UIKit
1011

11-
#if !os(watchOS)
1212
/// Protocol for quickly creating lists of cells, used in conjunction with `FastCell`.
1313
public protocol FastListView: NSObjectProtocol {
1414
var registeredIdentifiers: [String] { get set }

Sources/Base/View/TextField.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import UIKit
@@ -12,14 +12,14 @@ import RAKConfig
1212

1313
#if !os(watchOS)
1414
@objc(RAKTextField)
15-
public final class TextField: UITextField {
15+
open class TextField: UITextField {
1616
/// Color of the placeholder text
1717
///
1818
/// Please set before setting `placeholder`.
1919
/// Default is `Config.color.auxiliaryText`.
20-
public lazy var placeholderColor: UIColor = Config.color.auxiliaryGray.main
20+
open lazy var placeholderColor: UIColor = Config.color.auxiliaryGray.main
2121

22-
override public var placeholder: String? {
22+
override open var placeholder: String? {
2323
didSet { configPlaceholder() }
2424
}
2525

Sources/Codable/RAKCodable.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/5/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Codable/RAKDecodable+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/5/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Codable/RAKDecodable.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/5/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Codable/RAKEncodable+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/5/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Codable/RAKEncodable.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/5/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Config/Mediator/ConfigMediator.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Config/Mediator/ConfigMediatorProtocol.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Config/Mediator/ConfigSourceProtocol.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Config/Model/ColorConfig.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import UIKit

Sources/Config/Model/EmptyConfig.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/BinaryFloatingPoint+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import UIKit

Sources/Core/Extensions/BinaryInteger+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/6/13.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import UIKit

Sources/Core/Extensions/Bundle+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/CACornerMask+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
#if !os(watchOS)

Sources/Core/Extensions/CGPoint+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2025/2/17.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import UIKit

Sources/Core/Extensions/Character+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/6/13.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/Collection+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/ContentMode+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/6/12.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import UIKit

Sources/Core/Extensions/Date+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/Dictionary+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/DispatchQueue+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/5/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/Extendable/Extendable.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/Extendable/GenericExtendable.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/5/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/Extendable/TwoGenericExtendable.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/5/10.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

Sources/Core/Extensions/FileManager+RAK.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// RakuyoKit
44
//
55
// Created by Rakuyo on 2024/4/9.
6-
// Copyright © 2024 RakuyoKit. All rights reserved.
6+
// Copyright © 2024-2025 RakuyoKit. All rights reserved.
77
//
88

99
import Foundation

0 commit comments

Comments
 (0)