Skip to content

Commit 5f7c9f1

Browse files
author
JmoVxia
committed
修复excel表格视图bug
1 parent e32046f commit 5f7c9f1

File tree

135 files changed

+725
-270
lines changed

Some content is hidden

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

135 files changed

+725
-270
lines changed

CLDemo-OC/CLDemo-OC.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 51;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -1710,7 +1710,7 @@
17101710
"$(inherited)",
17111711
"$(PROJECT_DIR)/CLDemo-OC/Class/CLRecordeEncodeController/CLRecorder/LAME",
17121712
);
1713-
PRODUCT_BUNDLE_IDENTIFIER = "JmoVxia.CKD.CLDemo-OC";
1713+
PRODUCT_BUNDLE_IDENTIFIER = "com.JmoVxia.CKD.CLDemo-OC";
17141714
PRODUCT_NAME = "$(TARGET_NAME)";
17151715
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
17161716
SUPPORTS_MACCATALYST = NO;
@@ -1737,7 +1737,7 @@
17371737
"$(inherited)",
17381738
"$(PROJECT_DIR)/CLDemo-OC/Class/CLRecordeEncodeController/CLRecorder/LAME",
17391739
);
1740-
PRODUCT_BUNDLE_IDENTIFIER = "JmoVxia.CKD.CLDemo-OC";
1740+
PRODUCT_BUNDLE_IDENTIFIER = "com.JmoVxia.CKD.CLDemo-OC";
17411741
PRODUCT_NAME = "$(TARGET_NAME)";
17421742
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
17431743
SUPPORTS_MACCATALYST = NO;

CLDemo-Swift/CLDemo-Swift.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2887,7 +2887,7 @@
28872887
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
28882888
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
28892889
CODE_SIGN_STYLE = Automatic;
2890-
DEVELOPMENT_TEAM = YPW3979SPT;
2890+
DEVELOPMENT_TEAM = 533J5B8T42;
28912891
ENABLE_USER_SCRIPT_SANDBOXING = NO;
28922892
FRAMEWORK_SEARCH_PATHS = "";
28932893
INFOPLIST_FILE = "$(SRCROOT)/CLDemo-Swift/Resource/Info.plist";
@@ -2900,7 +2900,7 @@
29002900
"$(inherited)",
29012901
"$(PROJECT_DIR)/CLDemo-Swift/CLRecorder/LAME",
29022902
);
2903-
PRODUCT_BUNDLE_IDENTIFIER = "JmoVxia.CKD.CLDemo-Swift";
2903+
PRODUCT_BUNDLE_IDENTIFIER = "com.JmoVxia.CKD.CLDemo-Swift";
29042904
PRODUCT_NAME = "$(TARGET_NAME)";
29052905
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
29062906
SUPPORTS_MACCATALYST = NO;
@@ -2918,7 +2918,7 @@
29182918
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
29192919
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
29202920
CODE_SIGN_STYLE = Automatic;
2921-
DEVELOPMENT_TEAM = YPW3979SPT;
2921+
DEVELOPMENT_TEAM = 533J5B8T42;
29222922
ENABLE_USER_SCRIPT_SANDBOXING = NO;
29232923
FRAMEWORK_SEARCH_PATHS = "";
29242924
INFOPLIST_FILE = "$(SRCROOT)/CLDemo-Swift/Resource/Info.plist";
@@ -2931,7 +2931,7 @@
29312931
"$(inherited)",
29322932
"$(PROJECT_DIR)/CLDemo-Swift/CLRecorder/LAME",
29332933
);
2934-
PRODUCT_BUNDLE_IDENTIFIER = "JmoVxia.CKD.CLDemo-Swift";
2934+
PRODUCT_BUNDLE_IDENTIFIER = "com.JmoVxia.CKD.CLDemo-Swift";
29352935
PRODUCT_NAME = "$(TARGET_NAME)";
29362936
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
29372937
SUPPORTS_MACCATALYST = NO;

CLDemo-Swift/CLDemo-Swift/CLTheme/CLTheme.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ extension CLTheme {
1717
/// 夜间
1818
case dark
1919

20-
@available(iOS 13.0, *)
2120
/// 风格
21+
@available(iOS 13.0, *)
2222
var style: UIUserInterfaceStyle {
2323
switch self {
2424
case .follow: .unspecified

CLDemo-Swift/CLDemo-Swift/Class/Base/CLTabbarController/Controller/CLTabBarController.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ class CLTabBarController: UITabBarController {
1616
super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
1717
}
1818

19+
convenience init() {
20+
self.init(nibName: nil, bundle: nil)
21+
}
22+
1923
@available(*, unavailable)
2024
required init?(coder: NSCoder) {
2125
fatalError("init(coder:) has not been implemented")

CLDemo-Swift/CLDemo-Swift/Class/CLBreakPointResumeController/CLBreakPointResumeOperation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import UIKit
1010

11-
class CLBreakPointResumeOperation: Operation {
11+
class CLBreakPointResumeOperation: Operation, @unchecked Sendable {
1212
var progressHandler: ((CGFloat) -> Void)?
1313

1414
private(set) var error: CLBreakPointResumeManager.DownloadError?

CLDemo-Swift/CLDemo-Swift/Class/CLExcelController/View/CLCollectionExcelLayout.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ private extension IndexPath {
150150
// MARK: - ZOrder
151151

152152
private enum ZOrder {
153-
static let commonItem = 0
153+
static let commonItem = -1
154154
static let stickyItem = 1
155155
static let staticStickyItem = 2
156156
}

CLDemo-Swift/CLDemo-Swift/Class/CLPasswordController/CLPasswordInputView.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ class CLPasswordInputViewConfig: NSObject {
4747

4848
protocol CLPasswordInputViewDelegate: AnyObject {
4949
/// 输入改变
50-
func passwordInputViewDidChange(passwordInputView: CLPasswordInputView) -> Void
50+
func passwordInputViewDidChange(passwordInputView: CLPasswordInputView)
5151
/// 点击删除
52-
func passwordInputViewDidDeleteBackward(passwordInputView: CLPasswordInputView) -> Void
52+
func passwordInputViewDidDeleteBackward(passwordInputView: CLPasswordInputView)
5353
/// 输入完成
54-
func passwordInputViewCompleteInput(passwordInputView: CLPasswordInputView) -> Void
54+
func passwordInputViewCompleteInput(passwordInputView: CLPasswordInputView)
5555
/// 开始输入
56-
func passwordInputViewBeginInput(passwordInputView: CLPasswordInputView) -> Void
56+
func passwordInputViewBeginInput(passwordInputView: CLPasswordInputView)
5757
/// 结束输入
58-
func passwordInputViewEndInput(passwordInputView: CLPasswordInputView) -> Void
58+
func passwordInputViewEndInput(passwordInputView: CLPasswordInputView)
5959
}
6060

6161
extension CLPasswordInputViewDelegate {

CLDemo-Swift/CLDemo-Swift/Class/CLPlayGifController/CLGifOperation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import UIKit
1010

11-
class CLGifOperation: Operation {
11+
class CLGifOperation: Operation, @unchecked Sendable {
1212
private(set) var contentHandlers = [(CGImage, String) -> Void]()
1313
private var path: String!
1414
private var taskFinished: Bool = true {

CLDemo-Swift/CLDemo-Swift/Class/CLPlayVideoController/CLVideoOperation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import AVFoundation
1010
import UIKit
1111

12-
class CLVideoOperation: Operation {
12+
class CLVideoOperation: Operation, @unchecked Sendable {
1313
var imageCallback: ((CGImage, String) -> Void)?
1414
private var path: String!
1515
private var taskFinished: Bool = true {

CLDemo-Swift/CLDemo-Swift/Class/CLTextViewViewController/CLTextView/CLTextView.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ class CLTextViewConfig: NSObject {
7070

7171
protocol CLTextViewDelegate: AnyObject {
7272
/// 输入改变
73-
func textViewDidChange(textView: CLTextView) -> Void
73+
func textViewDidChange(textView: CLTextView)
7474
/// 开始输入
75-
func textViewBeginEditing(textView: CLTextView) -> Void
75+
func textViewBeginEditing(textView: CLTextView)
7676
/// 结束输入
77-
func textViewEndEditing(textView: CLTextView) -> Void
77+
func textViewEndEditing(textView: CLTextView)
7878
}
7979

8080
class CLTextView: UIView {

0 commit comments

Comments
 (0)