This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Martin is creating a iOS app that will check if a user exists and an API to fetch the data associated with respective phone number. Allows you to upload thumbnails. (see below for agenda) | |
-------------------------- | |
Programming Language: Swift | |
-------------------------- | |
Are you using SwiftUI? | |
UIKit | |
-------------------------- | |
What's On The Agenda (Detailed) ? | |
LOGIN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var username: String = "Anonymous" | |
var webSocketTask: URLSessionWebSocketTask! | |
var chatHistory: [String] = [] | |
var safeArea: UILayoutGuide! | |
let tableView = UITableView() | |
let messageTextField = UITextField() | |
let sendButton = UIButton() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// WelcomeVC.swift | |
// TokiTalkie-App | |
// | |
// Created by Martin Lasek on 14.11.19. | |
// Copyright © 2019 Martin Lasek. All rights reserved. | |
// | |
import UIKit |