kln 1 тиждень тому
батько
коміт
6fde90d70b

+ 2 - 2
AIPlayRingtones.xcodeproj/project.pbxproj

@@ -935,7 +935,7 @@
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
 				ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 1;
+				CURRENT_PROJECT_VERSION = 2;
 				DEVELOPMENT_TEAM = HR2R5NZ2MG;
 				GENERATE_INFOPLIST_FILE = YES;
 				INFOPLIST_FILE = AIPlayRingtones/Info.plist;
@@ -973,7 +973,7 @@
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
 				ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 1;
+				CURRENT_PROJECT_VERSION = 2;
 				DEVELOPMENT_TEAM = HR2R5NZ2MG;
 				GENERATE_INFOPLIST_FILE = YES;
 				INFOPLIST_FILE = AIPlayRingtones/Info.plist;

+ 1 - 1
AIPlayRingtones/AppPage/APRingTonesVC/APRingTonesVC/View/ASPromptTextView.swift

@@ -52,7 +52,7 @@ class ASPromptTextView : ASBaseView{
     
     lazy var customTextView: ASInputView = {
         let customTextView = ASInputView(
-            initialText: "Type your idea here.",
+            hint: "Type your idea here.",
             textFont: .font(size: 14),
             contentColor: .white,
             background: .clear

+ 6 - 6
AIPlayRingtones/AppPage/CustomTabBarController/CustomTabBarController.m

@@ -28,16 +28,16 @@
     
     APAudioToRingVC *firstVC = [[APAudioToRingVC alloc] init];
     ASBaseNavigationController *firstNav = [[ASBaseNavigationController alloc] initWithRootViewController:firstVC];
-    firstNav.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Create".localized
-                                                        image:[[UIImage imageNamed:@"tabbar_unSelect_create"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]
-                                                selectedImage:[[UIImage imageNamed:@"tabbar_selected_create"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
+    firstNav.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Audio".localized
+                                                        image:[[UIImage imageNamed:@"tabbar_unSelect_audio"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]
+                                                selectedImage:[[UIImage imageNamed:@"tabbar_selected_audio"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
     
 
     APRingTonesVC *secondVC = [[APRingTonesVC alloc] init];
     ASBaseNavigationController *secondNav = [[ASBaseNavigationController alloc] initWithRootViewController:secondVC];
-    secondNav.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Audio".localized
-                                                         image:[[UIImage imageNamed:@"tabbar_unSelect_audio"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]
-                                                 selectedImage:[[UIImage imageNamed:@"tabbar_selected_audio"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
+    secondNav.tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Create".localized
+                                                         image:[[UIImage imageNamed:@"tabbar_unSelect_create"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]
+                                                 selectedImage:[[UIImage imageNamed:@"tabbar_selected_create"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
     
     APMyRingVC *thirdVC = [[APMyRingVC alloc] init];
     ASBaseNavigationController *thirdNav = [[ASBaseNavigationController alloc] initWithRootViewController:thirdVC];