Remove unneeded overrides in custom views

This commit is contained in:
Danny Moesch 2019-01-27 14:26:11 +01:00
parent 41549b3481
commit 7f6ad5b88c
7 changed files with 33 additions and 70 deletions

View file

@ -0,0 +1,12 @@
//
// ContentTableViewCell.swift
// pass
//
// Created by Mingshen Sun on 12/2/2017.
// Copyright © 2017 Bob Sun. All rights reserved.
//
protocol ContentProvider {
func getContent() -> String?
func setContent(content: String?)
}