把mew的logo替换成音萌

This commit is contained in:
linyudan
2023-12-27 17:08:05 -08:00
parent 7cdf4dd54a
commit 7effd1bfee
24 changed files with 5 additions and 69 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -1,7 +1,7 @@
{
"images" : [
{
"filename" : "mew_appicon.png",
"filename" : "1024.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 324 KiB

View File

@@ -1,22 +0,0 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "mew_home_change_voice_girl@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "mew_home_change_voice_girl@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View File

@@ -1,22 +0,0 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "mew_home_change_voice_horror@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "mew_home_change_voice_horror@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

View File

@@ -1,22 +0,0 @@
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "mew_home_change_voice_mature@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "mew_home_change_voice_mature@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 636 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 710 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@@ -26,7 +26,7 @@
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="mew_home_header_bg" translatesAutoresizingMaskIntoConstraints="NO" id="pcR-pR-yML">
<rect key="frame" x="65" y="410.66666666666669" width="260" height="22.666666666666686"/>
</imageView>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Mew" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="O9G-IL-eNc">
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="音萌" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="O9G-IL-eNc">
<rect key="frame" x="156" y="338" width="78" height="38"/>
<constraints>
<constraint firstAttribute="height" constant="38" id="bZc-Tk-rMk"/>

View File

@@ -125,7 +125,7 @@ NSString * const kHadAgreePrivacy = @"HadAgreePrivacy";
}];
[self.helloTitleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.helloBgImageView.mas_right).offset(10);
make.bottom.equalTo(self.helloBgImageView);
make.centerY.equalTo(self.helloBgImageView);
}];
[self.helloDetailLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(self.helloBgImageView.mas_bottom).offset(20);
@@ -508,6 +508,8 @@ NSString * const kHadAgreePrivacy = @"HadAgreePrivacy";
if (!_helloBgImageView) {
_helloBgImageView = [[UIImageView alloc] init];
_helloBgImageView.image = [UIImage imageNamed:@"mew_login_logo"];
_helloBgImageView.layer.cornerRadius = 10;
_helloBgImageView.layer.masksToBounds = YES;
}
return _helloBgImageView;
}