Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
pidan
/
FuSiLive
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
9517dd50
authored
Jan 07, 2025
by
ludi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复一些bug
parent
688942a2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
6 deletions
Modules/FUSChatCenterModule/FUSChatCenterModule/Features/HomeMessagePage/FUSMessageView.m
Modules/FUSChatCenterModule/FUSChatCenterModule/Features/InstantMessaging/View/ToolViews/VideoChat/VideoCredit/FUSZoneVideoCreditTableViewCell.m
Modules/FUSUserCenterModule/FUSUserCenterModule/Features/CompleteUserInfo/View/FUSCompleteUserInfoNameView.swift
Modules/FUSChatCenterModule/FUSChatCenterModule/Features/HomeMessagePage/FUSMessageView.m
View file @
9517dd50
...
...
@@ -149,11 +149,8 @@
notificationRemindTextLabel
.
font
=
[
UIFont
fus_themeFont
:
14
];
notificationRemindTextLabel
.
textColor
=
[
UIColor
fus_textColorRich
];
notificationRemindTextLabel
.
text
=
[
NSString
fus_localString
:
@"开启通知,随时接收好友私信"
];
notificationRemindTextLabel
.
numberOfLines
=
0
;
[
self
.
notificationRemindView
addSubview
:
notificationRemindTextLabel
];
[
notificationRemindTextLabel
mas_makeConstraints
:
^
(
MASConstraintMaker
*
make
)
{
make
.
left
.
equalTo
(
bellImgView
.
mas_right
).
offset
(
10
);
make
.
centerY
.
offset
(
0
);
}];
UIButton
*
notificationRemindCloseBtn
=
[
UIButton
buttonWithType
:
UIButtonTypeCustom
];
[
notificationRemindCloseBtn
setImage
:[
FUSChatCenterBunble
imageNamed
:
@"fus_common_close_black_icon"
]
forState
:
UIControlStateNormal
];
...
...
@@ -175,6 +172,11 @@
make
.
height
.
offset
(
25
);
make
.
centerY
.
offset
(
0
);
}];
[
notificationRemindTextLabel
mas_makeConstraints
:
^
(
MASConstraintMaker
*
make
)
{
make
.
left
.
equalTo
(
bellImgView
.
mas_right
).
offset
(
10
);
make
.
centerY
.
offset
(
0
);
make
.
right
.
equalTo
(
notificationOpenBtn
.
mas_left
).
offset
(
-
10
);
}];
// 功能面板
self
.
functionColumnView
=
[[
FUSMessageFunctionColumnView
alloc
]
init
];
...
...
Modules/FUSChatCenterModule/FUSChatCenterModule/Features/InstantMessaging/View/ToolViews/VideoChat/VideoCredit/FUSZoneVideoCreditTableViewCell.m
View file @
9517dd50
...
...
@@ -34,6 +34,7 @@
-
(
void
)
awakeFromNib
{
[
super
awakeFromNib
];
// Initialization code
self
.
nameLabel
.
textColor
=
[
UIColor
fus_textColorRich
];
}
-
(
void
)
setModel
:
(
FUSVideoCreditRecordListModel
*
)
model
{
...
...
Modules/FUSUserCenterModule/FUSUserCenterModule/Features/CompleteUserInfo/View/FUSCompleteUserInfoNameView.swift
View file @
9517dd50
...
...
@@ -13,6 +13,7 @@ class FUSCompleteUserInfoNameView: FUSBaseView {
/// 输入框完成输入回调
var
textFieldEndEditHandler
:((
String
)
->
Void
)?
let
messageLabel
=
UILabel
()
let
settingNickNameTextLabel
=
UILabel
()
let
editNameCardBtn
=
UIButton
(
type
:
.
custom
)
let
nickNameTextField
=
FUSTextField
()
...
...
@@ -21,18 +22,31 @@ class FUSCompleteUserInfoNameView: FUSBaseView {
super
.
makeUI
()
self
.
backgroundColor
=
.
fus_appBG
()
messageLabel
.
font
=
.
fus_themeFont
(
14
)
messageLabel
.
textColor
=
.
fus_textColorLight2
()
// messageLabel.text = .localString("您只需花30秒完成一下信息的补充,即可获得FIREFLY新星认定,并获得相关专属的推荐。根据历史经验,您个人信息越真实,获得的关注者会越多。")
messageLabel
.
text
=
.
fus_localString
(
"您只需花30秒完成一下个人资料的补充,即可解锁私房价格的设定。"
)
messageLabel
.
numberOfLines
=
0
;
self
.
addSubview
(
messageLabel
)
messageLabel
.
snp
.
makeConstraints
{
make
in
make
.
top
.
equalToSuperview
()
.
offset
(
14
)
make
.
left
.
right
.
equalToSuperview
()
.
inset
(
26
)
}
settingNickNameTextLabel
.
font
=
.
fus_themeFont
(
17
)
settingNickNameTextLabel
.
textColor
=
.
fus_textColorRich
()
settingNickNameTextLabel
.
text
=
.
fus_localString
(
"设定暱称"
)
self
.
addSubview
(
settingNickNameTextLabel
)
settingNickNameTextLabel
.
snp
.
makeConstraints
{
make
in
make
.
left
.
right
.
equalToSuperview
()
.
inset
(
26
)
make
.
top
.
equalTo
(
20
)
make
.
top
.
equalTo
(
messageLabel
.
snp
.
bottom
)
.
offset
(
12
)
}
self
.
editNameCardBtn
.
titleLabel
?
.
numberOfLines
=
0
;
self
.
addSubview
(
editNameCardBtn
)
editNameCardBtn
.
snp
.
makeConstraints
{
make
in
make
.
left
.
equalTo
(
26
)
// make.left.equalTo(26)
make
.
left
.
right
.
equalToSuperview
()
.
inset
(
26
)
make
.
top
.
equalTo
(
settingNickNameTextLabel
.
snp
.
bottom
)
.
offset
(
10
)
}
editNameCardBtn
.
setAttributedTitle
(
.
sj
.
makeText
({
make
in
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment