Przeglądaj źródła

- 홈허브메뉴에서 와이파이검색 테이블 Outlet 연결

TaeHyun 8 lat temu
rodzic
commit
555ae8e6b6

+ 1 - 0
OneCable/Base.lproj/HomeHub.storyboard

@@ -3014,6 +3014,7 @@
                     <connections>
                         <outlet property="btnCancel" destination="kZB-lu-1jQ" id="4pc-qY-mPD"/>
                         <outlet property="btnNext" destination="pYL-fB-TAi" id="Yrw-KO-hyH"/>
+                        <outlet property="tableView" destination="bRJ-J9-3hr" id="uYw-b6-a63"/>
                     </connections>
                 </viewController>
                 <placeholder placeholderIdentifier="IBFirstResponder" id="e0W-M7-b4i" userLabel="First Responder" sceneMemberID="firstResponder"/>

+ 2 - 0
OneCable/Classes/ViewControllers/HomeHubScreens/HomeHubWifiSearchSuccessViewController.h

@@ -8,8 +8,10 @@
 
 #import "JDViewController.h"
 
+@class KNTableViewCell;
 @interface HomeHubWifiSearchSuccessViewController : JDViewController
 
+@property (weak, nonatomic) IBOutlet CustomTableView *tableView;
 @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;  // 취소 버튼
 @property (weak, nonatomic) IBOutlet CustomButton *btnNext;  // 다음 버튼
 

+ 1 - 0
OneCable/Classes/ViewControllers/HomeHubScreens/HomeHubWifiSearchSuccessViewController.m

@@ -8,6 +8,7 @@
 
 #import "HomeHubWifiSearchSuccessViewController.h"
 
+
 @interface HomeHubWifiSearchSuccessViewController ()
 
 @end