Reputation: 900
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 . Thanks and regards
Upvotes: 0
Views: 382
Reputation: 16337
UIScrollView has a content size property:
@property(nonatomic) CGSize contentSize
For future reference, I found this in the UIScrollView documentation.
Upvotes: 1