Drawing on UIScrollView and UIImageView
I want to draw line on image view the开发者_Python百科n image view is to put on scroll view. How to do that? Any Idea???
Set the scroll view's contents to a UIView. Display the image in the UIView, do a setNeedsDisplay on that view, and draw anything you want when the UIView's drawRect gets called.
精彩评论