我意识到会有这样的评论重复:
Change the Width of UISearchBars on a TableView
我认为不是。为什么我无法更改故事板中的宽度?
我可以在宽度字段中写入任何值,但只要按下return / enter键值320就会恢复。
我已经尝试过在视图中执行加载方法:
searchBar.frame = CGRectMake(0, 0, 222, 45);
再次取得成功,有谁知道如何做到这一点?我有一个索引表,右边的字母与搜索文本字段重叠,看起来很难看。
更新
简单来说,这就是我想要的(概念上):
这是我设法制作的:
再次让我重新讨论问题“我正在尝试调整搜索栏的大小,以便字母不会重叠”。
我已经尝试过taus-iDeveloper建议,它确实调整了大小但表格单元格/部分重叠了它。
还试过这个:
Changing the size of the UISearchBar TextField?
我设法在故事板中调整它的大小,但是当应用程序运行时,大小没有变化。
我完全不知道接下来会尝试什么......
更新2
我接受了答案,因为它有一些解决方案的元素,我得出结论,这不能仅通过编程方式使用故事板来完成,解决方案:
//Add the search bar uiview wrapper
UIView *searchBarView = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, self.tableView.frame.size.width, 44.0)];
//Add the search bar and navigation item to fill in the remaining space
UINavigationBar *remainingSearchSpace = [[UINavigationBar alloc] initWithFrame:CGRectMake(290, 0.0, (self.tableView.frame.size.width-290), 44.0)];
searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0.0, 0.0, 290, 44.0)];
searchBar.delegate = self;
[searchBarView addSubview:searchBar];
[searchBarView addSubview:remainingSearchSpace];
self.tableView.tableHeaderView = searchBarView;
答案 0 :(得分:1)
试试这个: 在.h文件中,
@interface SearchBarController : UIViewController <UISearchBarDelegate>
@property (nonatomic, retain) UISearchBar *mySearchBar;
在.m文件中,
@synthesize mySearchBar;
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = NSLocalizedString(@"SearchBarTitle", @"");
self.view.backgroundColor = [UIColor groupTableViewBackgroundColor]; // use the table view background color
self.mySearchBar = [[[UISearchBar alloc] initWithFrame:CGRectMake(0.0, 0.0, self.view.bounds.size.width, 44.0)] autorelease];
self.mySearchBar.delegate = self;
self.mySearchBar.showsCancelButton = YES;
self.mySearchBar.showsBookmarkButton = YES;
[self.view addSubview: self.mySearchBar];
// provide tint coloring and background image only if its available
if (![self.mySearchBar respondsToSelector:@selector(setSearchFieldBackgroundImage:forState:)])
{
// hide the segmented control allowing for various content options
self.contentOptions.hidden = YES;
}
}
希望这会有所帮助!!
答案 1 :(得分:1)
使用这些UISearchDisplayDeletegate函数:
- (void) searchDisplayControllerDidBeginSearch:(UISearchDisplayController *)controller
- (void) searchDisplayControllerDidEndSearch:(UISearchDisplayController *)controller
答案 2 :(得分:0)
您可以在搜索栏下方显示索引,而不是将其显示在默认情况下搜索取消按钮的位置。