diff --git a/Sources/Earthquake Network.xcodeproj/project.pbxproj b/Sources/Earthquake Network.xcodeproj/project.pbxproj index bee2f66..8b30c68 100644 --- a/Sources/Earthquake Network.xcodeproj/project.pbxproj +++ b/Sources/Earthquake Network.xcodeproj/project.pbxproj @@ -246,7 +246,6 @@ DC99A50324E66E270071BC9F /* EQNCommandProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC99A50224E66E270071BC9F /* EQNCommandProtocol.swift */; }; DC99A50524E66E430071BC9F /* EQNAppearanceCommand.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC99A50424E66E430071BC9F /* EQNAppearanceCommand.swift */; }; DC99A50724E66E5F0071BC9F /* EQNStartupCommandsBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC99A50624E66E5F0071BC9F /* EQNStartupCommandsBuilder.swift */; }; - DCA5B6E7252E4BD8002AEC96 /* EQNBaseTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCA5B6E6252E4BD8002AEC96 /* EQNBaseTableViewCell.swift */; }; DCAA913F24F68A1D00145A3D /* SettingMultivaluesTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCAA913E24F68A1D00145A3D /* SettingMultivaluesTableViewCell.swift */; }; DCB28CEE24FB8400001F557E /* SettingsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCB28CED24FB8400001F557E /* SettingsViewController.swift */; }; DCB528212560161C005288E5 /* AlertSimulatorViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCB528202560161C005288E5 /* AlertSimulatorViewController.swift */; }; @@ -574,7 +573,6 @@ DC99A50224E66E270071BC9F /* EQNCommandProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EQNCommandProtocol.swift; sourceTree = ""; }; DC99A50424E66E430071BC9F /* EQNAppearanceCommand.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EQNAppearanceCommand.swift; sourceTree = ""; }; DC99A50624E66E5F0071BC9F /* EQNStartupCommandsBuilder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EQNStartupCommandsBuilder.swift; sourceTree = ""; }; - DCA5B6E6252E4BD8002AEC96 /* EQNBaseTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EQNBaseTableViewCell.swift; sourceTree = ""; }; DCAA913E24F68A1D00145A3D /* SettingMultivaluesTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingMultivaluesTableViewCell.swift; sourceTree = ""; }; DCB28CED24FB8400001F557E /* SettingsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsViewController.swift; sourceTree = ""; }; DCB528202560161C005288E5 /* AlertSimulatorViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertSimulatorViewController.swift; sourceTree = ""; }; @@ -1145,7 +1143,6 @@ DCC23DEE24D28F58003A2404 /* EQNEdgeInsetLabel.swift */, DC03BEAA250BC0A60084769B /* EQNRoundedButton.swift */, DC52B8A424FCCD6900ABEBA6 /* AppTheme.swift */, - DCA5B6E6252E4BD8002AEC96 /* EQNBaseTableViewCell.swift */, 656E02152C1C4DF2008D0E92 /* EQNBaseContainerTableViewCell.swift */, 653C67E125F3CC2E00FE52AC /* EQNCustomAnnotationView.swift */, 6586971025F44C26009C0182 /* EQNBlurredCloseButton.swift */, @@ -1576,7 +1573,6 @@ 8C4E344B2152EE5B008B0D2A /* EQNGeneratoreURLServer.m in Sources */, 6590EFF82C3004EA00F41420 /* EQNOfficialPushNotification.swift in Sources */, DC99A50724E66E5F0071BC9F /* EQNStartupCommandsBuilder.swift in Sources */, - DCA5B6E7252E4BD8002AEC96 /* EQNBaseTableViewCell.swift in Sources */, 8CF66058214C566B009F4314 /* ServerRequest.m in Sources */, DCF9E14D24F6D1AA002B6B1D /* EQNData.swift in Sources */, DC52B8A524FCCD6900ABEBA6 /* AppTheme.swift in Sources */, diff --git a/Sources/Earthquake Network/UI/EQNBaseTableViewCell.swift b/Sources/Earthquake Network/UI/EQNBaseTableViewCell.swift deleted file mode 100644 index ce2bfb7..0000000 --- a/Sources/Earthquake Network/UI/EQNBaseTableViewCell.swift +++ /dev/null @@ -1,26 +0,0 @@ -// -// EQNBaseTableViewCell.swift -// Earthquake Network -// -// Created by Busi Andrea on 07/10/2020. -// Copyright © 2020 Earthquake Network. All rights reserved. -// - -import Foundation - - -class EQNBaseTableViewCell: UITableViewCell { - - @IBOutlet weak var containerView: UIView! - - // MARK: - View Lifecycle - - override func awakeFromNib() { - super.awakeFromNib() - - clipsToBounds = true - - // rounded corners and shadow - containerView.eqn_applyShadowAndRoundedCorners() - } -}