From 4eb8992d4948766cff11f5dfcb58752410a479e8 Mon Sep 17 00:00:00 2001
From: Joscha <joscha@virtual-artz.de>
Date: Tue, 23 May 2017 14:40:36 +0200
Subject: [PATCH] Removed unnecessary file and print statement

---
 enzevalos_iphone/AnimatedSendIcon.swift    |  3 +--
 enzevalos_iphone/CustomReadViewCells.swift | 23 ++++++++++++++++++++++
 2 files changed, 24 insertions(+), 2 deletions(-)
 create mode 100644 enzevalos_iphone/CustomReadViewCells.swift

diff --git a/enzevalos_iphone/AnimatedSendIcon.swift b/enzevalos_iphone/AnimatedSendIcon.swift
index 536b6c67..1b39e52d 100644
--- a/enzevalos_iphone/AnimatedSendIcon.swift
+++ b/enzevalos_iphone/AnimatedSendIcon.swift
@@ -62,9 +62,8 @@ class AnimatedSendIcon: UIView {
     
     func switchIcons() {
         DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + Double(Int64(0.001 * Double(NSEC_PER_SEC))) / Double(NSEC_PER_SEC), execute: {
-            print("zPosition") // TODO: In swift 3, the layer switch seems to work, remove this then
             self.square.layer.zPosition = self.isOnTop ? 1 : 0
-            self.square2.layer.zPosition = !self.isOnTop ? 1 : 0
+            self.square2.layer.zPosition = self.isOnTop ? 0 : 1
             self.isOnTop = !self.isOnTop
         })
         
diff --git a/enzevalos_iphone/CustomReadViewCells.swift b/enzevalos_iphone/CustomReadViewCells.swift
new file mode 100644
index 00000000..c32892fc
--- /dev/null
+++ b/enzevalos_iphone/CustomReadViewCells.swift
@@ -0,0 +1,23 @@
+//
+//  CustomReadViewCells.swift
+//  readView
+//
+//  Created by Joscha on 25.07.16.
+//  Copyright © 2016 Joscha. All rights reserved.
+//
+
+import UIKit
+
+class MessageBodyTableViewCell: UITableViewCell {
+    @IBOutlet var message: UILabel!
+}
+
+class InfoCell: UITableViewCell {
+
+    
+}
+
+class InfoButtonCell: UITableViewCell {
+    
+    
+}
-- 
GitLab