Rename Extensions to UIKit Extensions

This commit is contained in:
Maurice Parker
2019-09-11 16:58:55 -05:00
parent be84fc5a6b
commit 4e83b37c0b
12 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
//
// NonIntrinsicImageView.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 4/22/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import UIKit
class NonIntrinsicImageView: UIImageView {
// Prevent autolayout from messing around with our frame settings
override var intrinsicContentSize: CGSize {
return CGSize(width: UIView.noIntrinsicMetric, height: UIView.noIntrinsicMetric)
}
}