mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-05-31 03:40:41 +02:00
23 lines
515 B
Swift
23 lines
515 B
Swift
//
|
|
// OrganismTableViewCell.swift
|
|
// LegacyDemo
|
|
//
|
|
// Created by John Rommel Estropia on 2015/07/12.
|
|
// Copyright © 2018 John Rommel Estropia. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class OrganismTableViewCell: UITableViewCell {
|
|
|
|
@IBOutlet weak dynamic var dnaLabel: UILabel?
|
|
@IBOutlet weak dynamic var mutateButton: UIButton?
|
|
|
|
var mutateButtonHandler: (() -> Void)?
|
|
|
|
@IBAction dynamic func mutateButtonTouchUpInside(_ sender: UIButton?) {
|
|
|
|
self.mutateButtonHandler?()
|
|
}
|
|
}
|