我的问题是如何将UISearchBar的高度调整为44px以上。我的意思是,我需要设置一个更大的字体,但textField小于这个字体。 我已经知道如何增加字体:
[[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setFont:[UIFont systemFontOfSize:28]];
但不是如何增加UISearchBar的高度。
提前致谢。
答案 0 :(得分:0)
我已经解决了这个问题:
我通过更改背景图片来更改UISearchBar大小。 这是使用的代码:
[[UISearchBar appearance] setSearchFieldBackgroundImage:[UIImage imageNamed:@"fondoSearchBar.png"]forState:UIControlStateNormal];
图像高度为50,所以现在UISearchBar高度相同。