25 lines
524 B
Swift
25 lines
524 B
Swift
//
|
|
// ViewController.swift
|
|
// BigBlueButtonMobileSDK
|
|
//
|
|
// Created by Tiago Jacobs on 02/14/2022.
|
|
// Copyright (c) 2022 Tiago Jacobs. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class ViewController: UIViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
// Do any additional setup after loading the view, typically from a nib.
|
|
}
|
|
|
|
override func didReceiveMemoryWarning() {
|
|
super.didReceiveMemoryWarning()
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
}
|
|
|