This file contains 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
// | |
// OverlapViewController.swift | |
// TestApp | |
// | |
// Created by Shawn Frank on 09/04/2022. | |
// | |
import UIKit | |
class OverlapViewController: UIViewController { |
This file contains 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
// | |
// TableScrollVC.swift | |
// TestApp | |
// | |
// Created by Shawn Frank on 23/03/2022. | |
// | |
import UIKit | |
class TableScrollVC: UITableViewController { |
This file contains 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
// | |
// SegmentCollectionViewVC.swift | |
// TestApp | |
// | |
// Created by Shawn Frank on 22/03/2022. | |
// | |
import UIKit | |
fileprivate class SegmentCell: UICollectionViewCell { |
This file contains 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
// | |
// CustomLayoutVC.swift | |
// TestApp | |
// | |
// Created by Shawn Frank on 21/03/2022. | |
// | |
import UIKit | |
// This is used as the header and footer of each section |
This file contains 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
// | |
// SwipeCollectionView.swift | |
// TestApp | |
// | |
// Created by Shawn Frank on 01/03/2022. | |
// | |
import UIKit | |
class SwipeCollectionView: UIViewController |
This file contains 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
import UIKit | |
struct MatchProperty | |
{ | |
// Stores the index of the iCor array the current | |
// word belongs to | |
var iCorRIndex: Int | |
// Stores the index of the sentence in the which the word | |
// was encountered in the current iCor array |
This file contains 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
// | |
// NewsTableViewVC.swift | |
// TestApp | |
// | |
// Created by Shawn Frank on 16/02/2022. | |
// | |
import UIKit | |
fileprivate class CustomCell: UITableViewCell |
This file contains 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
// | |
// InputViewController.swift | |
// TestApp | |
// | |
// Created by Shawn Frank on 30/01/2022. | |
// | |
import UIKit | |
// Your model to store data in text fields |
This file contains 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
// | |
// UITableViewHeaderSectionView.swift | |
// Site Visit | |
// | |
// Created by Shawn Frank on 10/06/2021. | |
// | |
import UIKit | |
class UITableViewHeaderSectionView: UITableViewHeaderFooterView { |
NewerOlder