diff --git a/enzevalos_iphone/AnimatedSendIcon.swift b/enzevalos_iphone/AnimatedSendIcon.swift
index 536b6c67d9fa2e02b9defba685e41f1453af245b..1b39e52d1f1f86890cc4dfdea1fe1d3895e8f8b7 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 0000000000000000000000000000000000000000..c32892fcb6d8ff9e209cc765780ada2fd3157408
--- /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 {
+    
+    
+}