1

I got this error when i scrolls fast Left to Right or Right to Left.

" Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFType doubleValue]: unrecognized selector sent to instance 0x13cf0d300"

I have implemented the code. given below image. enter image description here

4

1 回答 1

0

你确定你completionHandler在主队列中被调用吗?如果没有,请尝试将代码包装completionHandler

dispatch_async(dispatch_get_main_queue()) {
    if thumbnailsURL == url {
        // Your animation code
    }
}
于 2016-01-14T10:20:24.447 回答