From bf21e302ad1eb8f83cda3450cafc187ca9f5907f Mon Sep 17 00:00:00 2001 From: Nickolay Sheika Date: Tue, 14 Jun 2016 15:06:58 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 07d7d97..f7a51e7 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Just simple interface. Provide data source class for UIImage's, setup all timing Data source should be ready to provide next image at the moment when APKenBurnsView calls `func nextImageForKenBurnsView(kenBurnsView: APKenBurnsView) -> UIImage?`. If there is no UIImage ready (still loading from network, etc.) then data source should return `nil` and APKenBurnsView will animate last image one more time. If you are loading your images from network you should consider some preloading mechanism. Example of usage: -``` +```swift class MyViewController: UIViewController { // MARK: - Outlets @IBOutlet weak var kenBurnsView: APKenBurnsView!