how to get the content size of a view
i am just beginner of iphone programming . i want to get size(full size) of content for scrollview can any one please provide me solution . 开发者_如何学Go Thanks and regards
UIScrollView has a content size property:
@property(nonatomic) CGSize contentSize
For future reference, I found this in the UIScrollView documentation.
精彩评论