|
@@ -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
|