File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -205,10 +205,10 @@ imageView.kf_setImageWithURL(NSURL(string: "your_image_url")!,
205
205
placeholderImage : nil ,
206
206
optionsInfo : nil ,
207
207
progressBlock : { (receivedSize, totalSize) -> () in
208
- println (" Download Progress: \( receivedSize ) /\( totalSize ) " )
208
+ print (" Download Progress: \( receivedSize ) /\( totalSize ) " )
209
209
},
210
210
completionHandler : { (image, error, imageURL) -> () in
211
- println (" Downloaded and set!" )
211
+ print (" Downloaded and set!" )
212
212
}
213
213
)
214
214
```
@@ -259,7 +259,7 @@ cache.maxCachePeriodInSecond = 60 * 60 * 24 * 3
259
259
260
260
// Get the disk size taken by the cache.
261
261
cache.calculateDiskCacheSizeWithCompletionHandler { (size) -> () in
262
- println (" disk size in bytes: \( size ) " )
262
+ print (" disk size in bytes: \( size ) " )
263
263
}
264
264
```
265
265
You can’t perform that action at this time.
0 commit comments