Skip to content

Commit e026ab1

Browse files
committed
适配 iOS 26
release 1.5.5
1 parent 4d035fc commit e026ab1

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

Guozaoke.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@
449449
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
450450
CODE_SIGN_IDENTITY = "Apple Development";
451451
CODE_SIGN_STYLE = Manual;
452-
CURRENT_PROJECT_VERSION = 136;
452+
CURRENT_PROJECT_VERSION = 137;
453453
DEVELOPMENT_ASSET_PATHS = "\"Guozaoke/Preview Content\"";
454454
DEVELOPMENT_TEAM = "";
455455
ENABLE_PREVIEWS = YES;
@@ -468,7 +468,7 @@
468468
"$(inherited)",
469469
"@executable_path/Frameworks",
470470
);
471-
MARKETING_VERSION = 1.5.4;
471+
MARKETING_VERSION = 1.5.5;
472472
PRODUCT_BUNDLE_IDENTIFIER = com.guozaoke.app.ios;
473473
PRODUCT_NAME = "$(TARGET_NAME)";
474474
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -489,7 +489,7 @@
489489
CODE_SIGN_ENTITLEMENTS = Guozaoke/GuozaokeRelease.entitlements;
490490
CODE_SIGN_IDENTITY = "Apple Development";
491491
CODE_SIGN_STYLE = Automatic;
492-
CURRENT_PROJECT_VERSION = 136;
492+
CURRENT_PROJECT_VERSION = 137;
493493
DEVELOPMENT_ASSET_PATHS = "\"Guozaoke/Preview Content\"";
494494
DEVELOPMENT_TEAM = 63K948ZA2P;
495495
ENABLE_PREVIEWS = YES;
@@ -508,7 +508,7 @@
508508
"$(inherited)",
509509
"@executable_path/Frameworks",
510510
);
511-
MARKETING_VERSION = 1.5.4;
511+
MARKETING_VERSION = 1.5.5;
512512
PRODUCT_BUNDLE_IDENTIFIER = com.guozaoke.app.ios;
513513
PRODUCT_NAME = "$(TARGET_NAME)";
514514
PROVISIONING_PROFILE_SPECIFIER = "";

Guozaoke/View/Home/SendCommentView.swift

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ struct SendCommentView: View {
3939
ProgressView()
4040
} else {
4141
Text("回复")
42-
.frame(maxWidth: 60, minHeight: 25)
42+
.frame(maxWidth: 60, minHeight: 30)
4343
.foregroundColor(Color.white)
4444
.background(Color.blue)
4545
.cornerRadius(12)
@@ -48,7 +48,7 @@ struct SendCommentView: View {
4848
}
4949
.disabled(isPosting || !contentTextValid)
5050
.padding(.trailing, 20)
51-
.padding(.top, 5)
51+
.padding(.top, 20)
5252
}
5353

5454

@@ -57,6 +57,11 @@ struct SendCommentView: View {
5757
.focused($isFocused)
5858
.padding(.top, -8)
5959
.subTitleFontStyle()
60+
.scrollContentBackground(.hidden) // 隐藏默认背景
61+
.background(
62+
RoundedRectangle(cornerRadius: 12, style: .continuous)
63+
.fill(.ultraThinMaterial) // 液态玻璃效果
64+
)
6065

6166
if viewModel.isLoading {
6267
ProgressView()

0 commit comments

Comments
 (0)