ibireme / YYImage

Image framework for iOS to display/encode/decode animated WebP, APNG, GIF, and more.
MIT License
1.76k stars 479 forks source link

dispatch_once_t引起的可能存在的危险 #81

Open kealdishx opened 7 years ago

kealdishx commented 7 years ago

.../YYKit/YYKit/Image/YYAnimatedImageView.m:147:5: Call to 'dispatch_once' uses the instance variable '_onceToken' for the predicate value. Using such transient memory for the predicate is potentially dangerous.

查阅dispatch_once函数文档,对于predicate,文档有如下说明:The predicate must point to a variable stored in global or static scope. The result of using a predicate with automatic or dynamic storage (including Objective-C instance variables) is undefined.