0
私はObjective Cを使用して検索目的でUISearchBar
を使用しています。検索バーの中央にテキストで配置する必要があります。左揃え。私が前にあなたのような同じ問題を抱えていたアドバンスUISearchBarプレースホルダテキストを中央にプログラムで配置する
私はObjective Cを使用して検索目的でUISearchBar
を使用しています。検索バーの中央にテキストで配置する必要があります。左揃え。私が前にあなたのような同じ問題を抱えていたアドバンスUISearchBarプレースホルダテキストを中央にプログラムで配置する
で
感謝。私は回避策を見つけることができず、結局のところ、ちょうどUILabel
とUISearchBarDelegate
の方法を使用しました。
ViewController.h:
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController <UISearchBarDelegate>
@end
ViewController.m:
#import "ViewController.h"
@interface ViewController() {
UISearchBar *srchBar;
UILabel *customPlaceHolderForSearchBar;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
CGRect frm = CGRectMake(0, 0, self.view.frame.size.width, 80);
srchBar = [[UISearchBar alloc] initWithFrame:frm];
srchBar.delegate = self;
[self.view addSubview:srchBar];
customPlaceHolderForSearchBar = [[UILabel alloc] initWithFrame:frm];
customPlaceHolderForSearchBar.text = @"PlaceHolder text";
customPlaceHolderForSearchBar.textColor = [UIColor grayColor];
customPlaceHolderForSearchBar.textAlignment = NSTextAlignmentCenter;
[self.view addSubview:customPlaceHolderForSearchBar];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
customPlaceHolderForSearchBar.hidden = YES;
}
- (void)searchBarTextDidEndEditing:(UISearchBar *)searchBar {
if (searchBar.text.length < 1) {
customPlaceHolderForSearchBar.hidden = NO;
}
}
@end