I am using UITableView's which contains two section (color and animals)
but I want to two UIButtons at tableview's header not in UITableView's section's header
Can you please help me :) thanks
I am using UITableView's which contains two section (color and animals)
but I want to two UIButtons at tableview's header not in UITableView's section's header
Can you please help me :) thanks
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.