jsdw_ios/Pods/Kingfisher/Sources/Documentation.docc/Resources/code-files/01-SampleCell-2.swift

10 lines
244 B
Swift

import UIKit
class SampleCell: UITableViewCell {
var sampleImageView: UIImageView = {
let imageView = UIImageView(frame: .zero)
imageView.translatesAutoresizingMaskIntoConstraints = false
return imageView
}()
}