Skip to content

Instantly share code, notes, and snippets.

@letatas
Last active January 13, 2020 15:01
Show Gist options
  • Save letatas/c0f494c75bde791888701ca0322fe6b5 to your computer and use it in GitHub Desktop.
Save letatas/c0f494c75bde791888701ca0322fe6b5 to your computer and use it in GitHub Desktop.
ReusableXibViews - MessageView - v1
//
// MessageView.swift
// ReusableXibViews
//
// Created by Matthias Lamoureux on 13/01/2020.
// Copyright © 2020 QSC. All rights reserved.
//
import UIKit
class MessageView: UIView {
@IBOutlet weak var messageLabel: UILabel!
@IBOutlet weak var messageIcon: UIImageView!
var message : String = "" {
didSet { messageLabel.text = message }
}
var symbol : String = "" {
didSet { messageIcon.image = UIImage(systemName: symbol) }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment