Remove unecessary imports
This commit is contained in:
parent
0fe1fc5cec
commit
cf797e8dbf
|
@ -1,4 +1,3 @@
|
||||||
import UIKit
|
|
||||||
import ImageIO
|
import ImageIO
|
||||||
|
|
||||||
/// Responsible for storing and updating the frames of a single GIF.
|
/// Responsible for storing and updating the frames of a single GIF.
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
import UIKit
|
|
||||||
|
|
||||||
/// Example class that conforms to `GIFAnimatable`. Uses default values for the animator frame buffer count and resize behavior. You can either use it directly in your code or use it as a blueprint for your own subclass.
|
/// Example class that conforms to `GIFAnimatable`. Uses default values for the animator frame buffer count and resize behavior. You can either use it directly in your code or use it as a blueprint for your own subclass.
|
||||||
public class GIFImageView: UIImageView, GIFAnimatable {
|
public class GIFImageView: UIImageView, GIFAnimatable {
|
||||||
|
|
||||||
|
@ -15,3 +13,4 @@ public class GIFImageView: UIImageView, GIFAnimatable {
|
||||||
updateImageIfNeeded()
|
updateImageIfNeeded()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
/// A `UIImage` extension that makes it easier to resize the image and inspect its size.
|
/// A `UIImage` extension that makes it easier to resize the image and inspect its size.
|
||||||
|
|
||||||
extension UIImage {
|
extension UIImage {
|
||||||
/// Resizes an image instance.
|
/// Resizes an image instance.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue