What is the simple way to create UIViewController with view in it with some controls, that will bounce like it was big UITableViewCell in UITableView ?
By bouncing, I mean if user moves his finger up and down the view will move like it was a UITableView.
Thanks.
I think you’re looking to use a
UIScrollView.The way to accomplish this is to set the
contentSizeequal to theframe‘ssize, and then set thebouncesproperty toYES.Something like this assuming you’re working in the context of a
UIViewController: