Reputation: 2527
I am using UITableView
's which contains two section (color and animals)
but I want to two UIButton
s at tableview's header not in UITableView
's section's header
Can you please help me :) thanks
Upvotes: 1
Views: 948
Reputation: 5174
You just have to drag and drop UIView
in your IB and outlet it and set
yourtable.tableHeaderView = youroutletview;
Now you can customize view as you want.
Upvotes: 3