ソースを参照

1.云机的应用上传关联

huangxiaodong 2 ヶ月 前
コミット
3ea0671ae5
共有1 個のファイルを変更した9 個の追加1 個の削除を含む
  1. 9 1
      创维盒子/code/cloudPhone/cloudPhoneViewController.m

+ 9 - 1
创维盒子/code/cloudPhone/cloudPhoneViewController.m

@@ -15,6 +15,7 @@
 #import "webRtcMsgModel.h"
 #import "webRtcPlayerViewController.h"
 #import "customRestartingBoxView.h"
+#import "NasPreviewAPPViewController.h"
 
 @interface cloudPhoneViewController ()
 @property (nonatomic,strong) cloudPhoneSetView *cloudPhoneSetV;
@@ -229,7 +230,7 @@
             KWeakSelf
             _cloudPhoneSetV.didClickButtonFun = ^(NSInteger tag) {
                 if (tag == 10) {//应用上传
-                    
+                    [weakSelf gotoAPPVCFun];
                 }
                 else if (tag == 11){//重启
                     [weakSelf didClickRestartFun];
@@ -608,4 +609,11 @@
         }
     });
 }
+
+#pragma mark 上传应用
+- (void)gotoAPPVCFun
+{
+    NasPreviewAPPViewController *vc = [NasPreviewAPPViewController new];
+    [self.navigationController pushViewController:vc animated:YES];
+}
 @end