”mew“改为音萌

This commit is contained in:
linyudan
2023-12-27 14:26:58 -08:00
parent 266b6a1023
commit 7cdf4dd54a
6 changed files with 19 additions and 16 deletions

View File

@@ -2504,11 +2504,11 @@
GCC_NO_COMMON_BLOCKS = NO; GCC_NO_COMMON_BLOCKS = NO;
GENERATE_INFOPLIST_FILE = YES; GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "yinmeng-ios/Info.plist"; INFOPLIST_FILE = "yinmeng-ios/Info.plist";
INFOPLIST_KEY_CFBundleDisplayName = Mew; INFOPLIST_KEY_CFBundleDisplayName = "音萌";
INFOPLIST_KEY_NSCameraUsageDescription = "“Mew”需要您的同意,才能访问进行拍照并上传您的图片,便于他人查看"; INFOPLIST_KEY_NSCameraUsageDescription = "“音萌”需要您的同意,才能访问进行拍照并上传您的图片,便于他人查看";
INFOPLIST_KEY_NSMicrophoneUsageDescription = "\"Mew\"需要您的同意,才可以进行语音聊天"; INFOPLIST_KEY_NSMicrophoneUsageDescription = "\"音萌\"需要您的同意,才可以进行语音聊天";
INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "“Mew”需要您的同意,才可以存储相片到相册"; INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "“音萌”需要您的同意,才可以存储相片到相册";
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "“Mew”需要您的同意,才可以访问相册并选择您需要上传的图片,便于他人查看"; INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "“音萌”需要您的同意,才可以访问相册并选择您需要上传的图片,便于他人查看";
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UIMainStoryboardFile = Main;
@@ -2551,11 +2551,11 @@
GCC_NO_COMMON_BLOCKS = NO; GCC_NO_COMMON_BLOCKS = NO;
GENERATE_INFOPLIST_FILE = YES; GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = "yinmeng-ios/Info.plist"; INFOPLIST_FILE = "yinmeng-ios/Info.plist";
INFOPLIST_KEY_CFBundleDisplayName = Mew; INFOPLIST_KEY_CFBundleDisplayName = "音萌";
INFOPLIST_KEY_NSCameraUsageDescription = "“Mew”需要您的同意,才能访问进行拍照并上传您的图片,便于他人查看"; INFOPLIST_KEY_NSCameraUsageDescription = "“音萌”需要您的同意,才能访问进行拍照并上传您的图片,便于他人查看";
INFOPLIST_KEY_NSMicrophoneUsageDescription = "\"Mew\"需要您的同意,才可以进行语音聊天"; INFOPLIST_KEY_NSMicrophoneUsageDescription = "\"音萌\"需要您的同意,才可以进行语音聊天";
INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "“Mew”需要您的同意,才可以存储相片到相册"; INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "“音萌”需要您的同意,才可以存储相片到相册";
INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "“Mew”需要您的同意,才可以访问相册并选择您需要上传的图片,便于他人查看"; INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "“音萌”需要您的同意,才可以访问相册并选择您需要上传的图片,便于他人查看";
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
INFOPLIST_KEY_UIMainStoryboardFile = Main; INFOPLIST_KEY_UIMainStoryboardFile = Main;

View File

@@ -41,7 +41,7 @@
} }
- (void)configQIYUSDK { - (void)configQIYUSDK {
[[QYSDK sharedSDK] registerAppId:@"b6b7ca22f8ce319dea3a7456dc211fec" appName:@"mew"]; [[QYSDK sharedSDK] registerAppId:@"b6b7ca22f8ce319dea3a7456dc211fec" appName:@"yinmeng"];
[QYSDK sharedSDK].customUIConfig.showAudioEntry = NO; [QYSDK sharedSDK].customUIConfig.showAudioEntry = NO;
[QYSDK sharedSDK].customUIConfig.autoShowKeyboard = NO; [QYSDK sharedSDK].customUIConfig.autoShowKeyboard = NO;
[QYSDK sharedSDK].customUIConfig.serviceHeadImage = [UIImage imageNamed:@"ming_setting_about_us"]; [QYSDK sharedSDK].customUIConfig.serviceHeadImage = [UIImage imageNamed:@"ming_setting_about_us"];

View File

@@ -22,7 +22,7 @@
} }
+ (NSString *)appName { + (NSString *)appName {
return @"mew"; return @"yinmeng";
} }
+ (NSString *)appBuild{ + (NSString *)appBuild{
@@ -111,7 +111,7 @@ static NSString *_from = nil;
// }else { // }else {
// _from = @"mew_appstore"; // App Store // _from = @"mew_appstore"; // App Store
// } // }
_from = @"mew_appstore"; // _from = @"yinmeng_appstore"; //
} }
} }

View File

@@ -11,6 +11,9 @@ NS_ASSUME_NONNULL_BEGIN
@interface MewUtility : NSObject @interface MewUtility : NSObject
@end
@interface MewUtility (MewApp)
/*==============================*/ /*==============================*/
/* App Utilities */ /* App Utilities */
@@ -123,7 +126,7 @@ NS_ASSUME_NONNULL_BEGIN
/*==============================*/ /*==============================*/
/* Device Utilities */ /* Device Utilities */
/*==============================*/ /*==============================*/
@interface MewUtility (Device) @interface MewUtility (MewDevice)
/** /**
* 获取modelName, 如iPhone5,2 * 获取modelName, 如iPhone5,2

View File

@@ -525,7 +525,7 @@ NSString * const kHadAgreePrivacy = @"HadAgreePrivacy";
- (UILabel *)helloDetailLabel { - (UILabel *)helloDetailLabel {
if (!_helloDetailLabel) { if (!_helloDetailLabel) {
_helloDetailLabel = [[UILabel alloc]init]; _helloDetailLabel = [[UILabel alloc]init];
_helloDetailLabel.text = @"欢迎来到Mew"; _helloDetailLabel.text = @"欢迎来到音萌";
_helloDetailLabel.textColor = UIColor.whiteColor; _helloDetailLabel.textColor = UIColor.whiteColor;
_helloDetailLabel.font = kFontMedium(40); _helloDetailLabel.font = kFontMedium(40);
} }

View File

@@ -149,7 +149,7 @@
- (UILabel *)nameLabel { - (UILabel *)nameLabel {
if (!_nameLabel) { if (!_nameLabel) {
_nameLabel = [[UILabel alloc] init]; _nameLabel = [[UILabel alloc] init];
_nameLabel.text = @"Mew"; _nameLabel.text = @"音萌";
_nameLabel.textColor = UIColor.whiteColor; _nameLabel.textColor = UIColor.whiteColor;
_nameLabel.font = kFontHeavy(24); _nameLabel.font = kFontHeavy(24);
} }