forked from AgoraIO/API-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseViewController.swift
More file actions
173 lines (137 loc) · 4.9 KB
/
BaseViewController.swift
File metadata and controls
173 lines (137 loc) · 4.9 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
//
// BaseVC.swift
// APIExample
//
// Created by 张乾泽 on 2020/4/17.
// Copyright © 2020 Agora Corp. All rights reserved.
//
import UIKit
import AGEVideoLayout
class BaseViewController: AGViewController {
var configs: [String:Any] = [:]
override func viewDidLoad() {
// self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Show Log",
// style: .plain,
// target: self,
// action: #selector(showLog))
LogUtils.removeAll()
}
@objc func showLog() {
let storyBoard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let newViewController = storyBoard.instantiateViewController(withIdentifier: "LogViewController")
self.present(newViewController, animated: true, completion: nil)
}
func showAlert(title: String? = nil, message: String) {
let alertController = UIAlertController(title: title, message: message, preferredStyle: .alert)
let action = UIAlertAction(title: "OK", style: .cancel, handler: nil)
alertController.addAction(action)
self.present(alertController, animated: true, completion: nil)
}
func getAudioLabel(uid:UInt, isLocal:Bool) -> String {
return "AUDIO ONLY\n\(isLocal ? "Local" : "Remote")\n\(uid)"
}
}
extension AGEVideoContainer {
func layoutStream(views: [AGView]) {
let count = views.count
var layout: AGEVideoLayout
if count == 1 {
layout = AGEVideoLayout(level: 0)
.itemSize(.scale(CGSize(width: 1, height: 1)))
} else if count == 2 {
layout = AGEVideoLayout(level: 0)
.itemSize(.scale(CGSize(width: 0.5, height: 1)))
} else if count > 2, count < 5 {
layout = AGEVideoLayout(level: 0)
.itemSize(.scale(CGSize(width: 0.5, height: 0.5)))
} else {
return
}
self.listCount { (level) -> Int in
return views.count
}.listItem { (index) -> AGEView in
return views[index.item]
}
self.setLayouts([layout])
}
func layoutStream1x2(views: [AGView]) {
let count = views.count
var layout: AGEVideoLayout
if count > 2 {
return
} else {
layout = AGEVideoLayout(level: 0)
.itemSize(.scale(CGSize(width: 1, height: 0.5)))
}
self.listCount { (level) -> Int in
return views.count
}.listItem { (index) -> AGEView in
return views[index.item]
}
self.setLayouts([layout])
}
func layoutStream2x1(views: [AGView]) {
let count = views.count
var layout: AGEVideoLayout
if count > 2 {
return
} else {
layout = AGEVideoLayout(level: 0)
.itemSize(.scale(CGSize(width: 0.5, height: 1)))
}
self.listCount { (level) -> Int in
return views.count
}.listItem { (index) -> AGEView in
return views[index.item]
}
self.setLayouts([layout])
}
func layoutStream2x2(views: [AGView]) {
let count = views.count
var layout: AGEVideoLayout
if count > 4 {
return
} else {
layout = AGEVideoLayout(level: 0)
.itemSize(.scale(CGSize(width: 0.5, height: 0.5)))
}
self.listCount { (level) -> Int in
return views.count
}.listItem { (index) -> AGEView in
return views[index.item]
}
self.setLayouts([layout])
}
func layoutStream3x2(views: [AGView]) {
let count = views.count
var layout: AGEVideoLayout
if count > 6 {
return
} else {
layout = AGEVideoLayout(level: 0)
.itemSize(.scale(CGSize(width: 0.33, height: 0.5)))
}
self.listCount { (level) -> Int in
return views.count
}.listItem { (index) -> AGEView in
return views[index.item]
}
self.setLayouts([layout])
}
func layoutStream3x3(views: [AGView]) {
let count = views.count
var layout: AGEVideoLayout
if count > 9 {
return
} else {
layout = AGEVideoLayout(level: 0)
.itemSize(.scale(CGSize(width: 0.33, height: 0.33)))
}
self.listCount { (level) -> Int in
return views.count
}.listItem { (index) -> AGEView in
return views[index.item]
}
self.setLayouts([layout])
}
}