Skip to content

Instantly share code, notes, and snippets.

View Cyanide7523's full-sized avatar

poca-p0ca Cyanide7523

View GitHub Profile
@Cyanide7523
Cyanide7523 / NotificationBar + extension.swift
Last active August 30, 2018 01:02
NotificationBar & NavigationBar Extension
/**
NotificationBar presents status of app's internal workflow visually.
In case of server disconnection... or receiving a new message... etc
*/
class NotificationBar: UIView{
private let messageLabel: UILabel = UILabel()
// You can change the mark as you wish, If it can be presented by Unicode text.
@Cyanide7523
Cyanide7523 / Logger.swift
Last active September 14, 2018 06:09
Light-Weight-Easy-to-Use Logger Class
//
// Logger.swift
//
// Created by Cyan on 2018. 9. 14..
// Copyright © 2018 Cyan. All rights reserved.
//
import Foundation
import UIKit
@Cyanide7523
Cyanide7523 / UITextViewExtension.swift
Created September 14, 2018 07:19
Extension function for scrolling textView scroll to bottom
//
// UITextViewExtensions.swift
//
// Created by Cyan on 2018. 9. 14..
// Copyright © 2018 Cyan. All rights reserved.
//
import Foundation
import UIKit