girish
girish

Reputation: 900

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 . Thanks and regards

Upvotes: 0

Views: 382

Answers (1)

Amy Worrall
Amy Worrall

Reputation: 16337

UIScrollView has a content size property:

@property(nonatomic) CGSize contentSize

For future reference, I found this in the UIScrollView documentation.

Upvotes: 1

Related Questions