Parcourir la source

- 멤버, 회원가입페이지 디자인 가이드 적용

TaeHyun il y a 8 ans
Parent
commit
61dbbc2568

Fichier diff supprimé car celui-ci est trop grand
+ 91 - 90
OneCable/Base.lproj/HomeMember.storyboard


+ 22 - 0
OneCable/Base.lproj/Main.storyboard

@@ -224,6 +224,17 @@
                                                         <state key="normal" title="아이디 찾기">
                                                             <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
                                                         </state>
+                                                        <state key="selected">
+                                                            <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
+                                                        </state>
+                                                        <state key="highlighted">
+                                                            <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
+                                                        </state>
+                                                        <userDefinedRuntimeAttributes>
+                                                            <userDefinedRuntimeAttribute type="color" keyPath="placeHolderColor">
+                                                                <color key="value" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
+                                                            </userDefinedRuntimeAttribute>
+                                                        </userDefinedRuntimeAttributes>
                                                         <connections>
                                                             <action selector="btnIdFindTouched:" destination="qsU-xn-xXB" eventType="touchUpInside" id="rAQ-i7-vwH"/>
                                                         </connections>
@@ -243,6 +254,17 @@
                                                         <state key="normal" title="비밀번호 찾기">
                                                             <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
                                                         </state>
+                                                        <state key="selected">
+                                                            <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
+                                                        </state>
+                                                        <state key="highlighted">
+                                                            <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
+                                                        </state>
+                                                        <userDefinedRuntimeAttributes>
+                                                            <userDefinedRuntimeAttribute type="color" keyPath="placeHolderColor">
+                                                                <color key="value" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
+                                                            </userDefinedRuntimeAttribute>
+                                                        </userDefinedRuntimeAttributes>
                                                         <connections>
                                                             <action selector="btnPwFindTouched:" destination="qsU-xn-xXB" eventType="touchUpInside" id="EnH-K6-8Iw"/>
                                                         </connections>

Fichier diff supprimé car celui-ci est trop grand
+ 31 - 35
OneCable/Base.lproj/Rules.storyboard


Fichier diff supprimé car celui-ci est trop grand
+ 2719 - 472
OneCable/Base.lproj/SignUp.storyboard


+ 1 - 1
OneCable/Classes/ViewControllers/HomeMemberScreens/HomeMemberAddViewController.m

@@ -22,7 +22,7 @@
 #define kiHeaderCellHeight 100
 #define kiAddCellHeight 61
 #define kiInputCellHeight 80
-#define kiQuizCellHeight 420
+#define kiQuizCellHeight 430
 
 /**
  

+ 15 - 0
OneCable/Classes/ViewControllers/MainScreens/LoginViewController.m

@@ -443,11 +443,26 @@ ID / PW Input Box Text Color
     [self presentViewController:vc animated:YES completion:nil];
 }
 
+// 아이디 찾기 호출
 - (IBAction)btnIdFindTouched:(id)sender {
     NSLog(@"아이디 찾기");
+    UIViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"IdFindViewController" storyboardName:@"SignUp"];
+    
+    
+    UINavigationController *m_navi =[[UINavigationController alloc]initWithRootViewController:vc];
+    
+    [self presentViewController:m_navi animated:YES completion:nil];
 }
+
+// 비밀번호 찾기 호출
 - (IBAction)btnPwFindTouched:(id)sender {
     NSLog(@"비밀번호 찾기");
+    UIViewController *vc = [CommonUtil instantiateViewControllerWithIdentifier:@"PwFindViewController" storyboardName:@"SignUp"];
+    
+    
+    UINavigationController *m_navi =[[UINavigationController alloc]initWithRootViewController:vc];
+    
+    [self presentViewController:m_navi animated:YES completion:nil];
 }