I have the function:
- (void)scrollViewDidEndZooming:(UIScrollView *)scrollView withView:(UIView *)view atScale:(float)scale
The declaration is copied from the documentation. However, I am getting a "convicting parameter types
" warning 'CGFLoat' (aka double) vs 'float'.
Changing the float to a CGFloat
does not make the warning go away. How do I fix?