Skip to content
Snippets Groups Projects
Commit 4eb8992d authored by Joscha's avatar Joscha
Browse files

Removed unnecessary file and print statement

parent 91b8c5d1
Branches
Tags
No related merge requests found
...@@ -62,9 +62,8 @@ class AnimatedSendIcon: UIView { ...@@ -62,9 +62,8 @@ class AnimatedSendIcon: UIView {
func switchIcons() { func switchIcons() {
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + Double(Int64(0.001 * Double(NSEC_PER_SEC))) / Double(NSEC_PER_SEC), execute: { 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.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 self.isOnTop = !self.isOnTop
}) })
......
//
// 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 {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment