-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathViewController.m
38 lines (28 loc) · 925 Bytes
/
ViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// ViewController.m
// Bandicam
//
// Created by 张彦林 on 17/6/9.
// Copyright © 2017年 zhangyanlf. All rights reserved.
//
#import "ViewController.h"
#import "makeVideoViewController.h"
#import "RecordMovieViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)ClickBandicamButton:(UIButton *)sender {
makeVideoViewController *MVCV = [[makeVideoViewController alloc] init];
[self presentViewController:MVCV animated:YES completion:nil];
// RecordMovieViewController *RMVc = [[RecordMovieViewController alloc] init];
// [self presentViewController:RMVc animated:YES completion:nil];
}
@end