Skip to content

Instantly share code, notes, and snippets.

View GlobakMaxim's full-sized avatar

Maxim Globak GlobakMaxim

View GitHub Profile
@GlobakMaxim
GlobakMaxim / swift
Created October 2, 2017 13:55
Как написать код чтобы по нажатию на Segmentedcontrols вывести ImageView in cell TableView?
//: Playground - noun: a place where people can play
import UIKit
enum Result: String {
case mineral
case notMineral
}
enum ProductType {
//: Playground - noun: a place where people can play
import UIKit
protocol DisplaySection {
var typeId: AnyHashable {get set}
var title: String {get set}
var items: [DisplayItem] {get set}
}