Yvan
Yvan
加载gif图片crash,会导致suggestHeight为NaN. 跟踪调试了下,是除以0导致的。 - (CGFloat)_resizeImageStorage:(LWImageStorage *)imageStorage image:(UIImage *)image { CGSize imageSize = image.size;//0, 0 CGFloat imageScale = imageSize.height/imageSize.width; CGSize reSize = CGSizeMake(imageStorage.bounds.size.width,imageStorage.bounds.size.width * imageScale); CGFloat delta = reSize.height - imageStorage.frame.size.height; imageStorage.frame...
在工程中用到YYmodel的时候,因为在Model里面加了业务层逻辑,给model添加了iddelegate属性,再反解析(modelToJsonObject)的时候,会在 static id ModelToJSONObjectRecursive(NSObject *model) 方法里死循环。 因为model指定了delegate,delegate又持有model。
I found a issue, the dismiss animation disappeared immediately when tapped the action button, but the present animation is ok, the animation duration is both set to 0.5.Please check it.