开发者

Modify UISearchBar width in a UITableView header

开发者 https://www.devze.com 2023-04-09 03:32 出处:网络
I\'m running the following snippet of code (in ViewDidLoad method of a UITableViewController) to create a UISearchBar and add it to a UITableView header.

I'm running the following snippet of code (in ViewDidLoad method of a UITableViewController) to create a UISearchBar and add it to a UITableView header.

UISearchBar search = new UISearchBar();
search.SizeToFit (); // How to modify width?
TableView开发者_开发技巧.TableHeaderView = searchBar;

Do you if there is a workaround to modify the width of the UISearchBar. The previous snippet of code allows the bar to have a width as the screen one. Giving a frame to the bar seems not working.

Thank you in advance.

EDIT: The sample has been created for MonoTouch, but it can apply for iOS in general.


This is the solution that I found:

  • create a UIToolbar
  • add the UISearchBar to that toolbar
  • add the toolbar to the header of a UITableView

Since in a UIToolbar it is possible to insert space elements (i.e. UIBarButtonItemFlexibleSpace), the width of a search bar can be modified easily.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号