d8436f79f6
* files reorganization (#432) * fix podspec * only include swift files * Fix broken readme paths (#433) * update links * fix french link * split skeleton debug to public and internal methods (#434) * Add build phase to execute SwiftLint (#435) * update tvOS tests * Refactor Extensions folder (#436) * Reorganize SkeletonAppearance (#437) * reorganize helpers and builders folders (#438) * Refactor flow and multilines (#439) * Reorganize collections folder (#440) * reorganize collections folder * update podspec * Refactor SkeletonView facade (#441) * reorganize collections folder * update podspec * refactor skeletonview facade * fix conflict * update iOS example * fix github workflows * update tvOS example project build settings
34 lines
769 B
Swift
34 lines
769 B
Swift
//
|
|
// Cell.swift
|
|
// SkeletonViewExample
|
|
//
|
|
// Created by Juanpe Catalán on 03/11/2017.
|
|
// Copyright © 2017 SkeletonView. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class Cell: UITableViewCell {
|
|
|
|
@IBOutlet weak var avatar: UIImageView!
|
|
@IBOutlet weak var label1: UILabel!
|
|
@IBOutlet weak var textField: UITextField!
|
|
|
|
override func awakeFromNib() {
|
|
super.awakeFromNib()
|
|
setUpInputAccessoryView()
|
|
}
|
|
|
|
func setUpInputAccessoryView() {
|
|
let bar = UIToolbar()
|
|
let reset = UIBarButtonItem(title: "InputAccessoryView", style: .plain, target: self, action: #selector(resetTapped))
|
|
bar.items = [reset]
|
|
bar.sizeToFit()
|
|
textField.inputAccessoryView = bar
|
|
}
|
|
|
|
@objc func resetTapped() {
|
|
|
|
}
|
|
}
|