changelog
changelog

Reputation: 4681

Adding a button in the bottom of a TableView

I'm trying to add a button on the bottom of a TableView, without any success.

The idea isn't to use the tableFooterView property, as that doesn't show the button in a fixed position.

My idea is more along the lines of the Facebook application's Notifications bar on the bottom.

I'm using Three20.

Any pointers on how I can achieve this?

Thanks

Upvotes: 0

Views: 912

Answers (3)

Swastik
Swastik

Reputation: 2425

Just add button to the view below your tableview but ensure your table height is less than the position you are adding the button,this way your can scroll table above button & your button will always be visible

Upvotes: 3

karim
karim

Reputation: 15589

Add a UIView as the footerView and then add the UIButton to the UIView.

Upvotes: 0

Ajith
Ajith

Reputation: 1457

Just embed custom view over your tableview.i mean on the bottom of tableview.so the tableview will scroll and the view don't.

Upvotes: 0

Related Questions