0

searchBar がself.tableView.tableHeaderViewに配置された TableVieController を取得しました。画面が回転すると、フレームを新しい CGRect に設定するだけです。ビューは問題ないように見えますが、残念ながら検索バーの半分がクリックできず、キャンセル ボタンもクリックできません。

では、どうすればこれを機能させることができますか?私は検索バーの新しいインスタンスを作成して割り当てることによってのみそれを行うことができましたが、それは正しい方法ではありませんよね?

const CGRect CGRECT_TABLE_VIEW_PORTRAIT = { { 0.0f, 0.0f }, { 320.0f, 365.0f } };
const CGRect CGRECT_TABLE_VIEW_LANDSCAPE = { { 0.0f, 0.0f }, { 480.0f, 150.0f } };


- (void)viewDidLoad
{
... 
        // create search bar
        searchBar = [[UISearchBar alloc] initWithFrame:self.tableView.bounds];
        [searchBar setTintColor:RGB(168, 212, 255)] ;    
        searchBar.showsCancelButton = YES;
        [searchBar sizeToFit]; // Get the default height for a search bar.
        searchBar.delegate = self;

        self.tableView.tableHeaderView = searchBar;
        self.tableView.frame = CGRECT_TABLE_VIEW_PORTRAIT;
}


- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)
interfaceOrientation duration:(NSTimeInterval)duration {

        if (UIInterfaceOrientationIsPortrait(interfaceOrientation)) {
              tableView.frame = CGRECT_TABLE_VIEW_LANDSCAPE;
        } else {
              tableView.frame = CGRECT_TABLE_VIEW_LANDSCAPE;
        }
}
4

1 に答える 1

0

ローテーションを自動的に処理する必要があるのに、なぜローテーションを処理しようとしているのかわかりません。このコードは、回転時に自動的に調整される検索バーを提供するために機能しました。

- (void)viewDidLoad {
    UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:self.tableView.bounds];
    [searchBar setTintColor:[UIColor colorWithRed:168/255 green:212/255 blue:1 alpha:1]];
    searchBar.showsCancelButton = YES;
    [searchBar sizeToFit]; // Get the default height for a search bar.
    searchBar.delegate = self;
    self.tableView.tableHeaderView = searchBar;
}
于 2013-01-27T17:14:42.590 に答える