Remove unecessary imports

This commit is contained in:
Reda Lemeden 2016-10-08 19:52:16 +02:00
parent 0fe1fc5cec
commit cf797e8dbf
3 changed files with 1 additions and 4 deletions

View File

@ -1,4 +1,3 @@
import UIKit
import ImageIO
/// Responsible for storing and updating the frames of a single GIF.

View File

@ -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.
public class GIFImageView: UIImageView, GIFAnimatable {
@ -15,3 +13,4 @@ public class GIFImageView: UIImageView, GIFAnimatable {
updateImageIfNeeded()
}
}

View File

@ -1,5 +1,4 @@
/// A `UIImage` extension that makes it easier to resize the image and inspect its size.
extension UIImage {
/// Resizes an image instance.
///