SmartTree
SmartTree

Reputation: 1471

Static pictures in UITableView

I would like to have 2 pictures in my UITabeViewController, one in the top (below the navigationBar) and one in the bottom (above the tabBar). What I want to do, is when you scroll the tableView, theses images will stay static and won't move.

How is it possible to do that ?

Thank's!

Upvotes: 0

Views: 82

Answers (2)

Huangzy
Huangzy

Reputation: 149

You has some thing wrong. You need it's only a UIViewController, which has a tableview and two imageView. UITableView must scroll all it's content view. UITableView has two part: a large content view, a small clipping view. when you scroll table view, it has chage the content view's visible range。

Upvotes: 0

borrrden
borrrden

Reputation: 33421

How about just making the table view smaller and putting UIImageViews above and below?

Upvotes: 3

Related Questions