iPhoneの連絡先アプリケーションの画面の種類を変更して、検索バーを常に上部に表示することはできますか?はいの場合どのように?
質問する
1476 次
2 に答える
2
私はそれをする方法を見つけました。
ここにあります
- テーブルビューを別のビューにプルします
- 最初に検索バーを配置し、次にテーブルビューを新しい別のビューに配置します
- テーブルビュー用のiboutletを作成し、同じものを接続します。
- テーブルビューデリゲートに適切な変更を加えます。
- 新しいテーブルビューに追加されたuitableviewの測定値を変更します。
于 2010-10-13T14:26:05.550 に答える
0
古い質問だとは思いますが、これに対する解決策を見つけました。これは、従来のUITableViewControllerとUTSearchDisplayControllerで機能します。
最初にsearchBarのコンテナビューを作成し、その中に検索バーを配置しました。コンテナは境界にクリップしてはなりません。この後、コンテナに対する検索バーの位置を変更できます。これに関する1つの問題は、この方法では検索バーがユーザーの操作を処理しないことです。したがって、実際のフレームより下のイベントを取得する独自のコンテナを使用する必要があります。
コンテナクラス:
@interface _SearchContainerView : UIView
@end
@implementation _SearchContainerView
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
if (self.subviews.count > 0) {
UISearchBar *searchBar = (UISearchBar *) self.subviews[0];
CGRect f = searchBar.frame;
f = CGRectMake(0, 0, f.size.width, f.origin.y + f.size.height);
if (CGRectContainsPoint(f, point)) return YES;
}
return [super pointInside:point withEvent:event];
}
@end
プログラムでsearchBarを作成する場合は、次のようなコードでこれを設定できます。
- (void)setSearchEnabled:(BOOL)searchEnabled {
if (searchBar == nil && searchEnabled) {
searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, self.tableView.bounds.size.width, 44)];
searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar
contentsController:self];
searchBar.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin
| UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleWidth;
searchDisplayController.delegate = self;
searchDisplayController.searchResultsDataSource = self;
searchContainer = [[_SearchContainerView alloc] initWithFrame:searchBar.frame];
[container addSubview:searchBar];
container.clipsToBounds = NO;
self.tableView.tableHeaderView = container;
} else {
[searchBar removeFromSuperview];
self.tableView.tableHeaderView = nil;
searchBar = nil;
searchDisplayController = nil;
searchContainer = nil;
}
}
次に、tableViewのスクロール位置に基づいて位置を変更できます。
-(void)scrollViewDidScroll:(UIScrollView *)scrollView {
if (searchBar == nil || searchDisplayController.isActive) return;
CGRect b = self.tableView.bounds;
// Position the searchbar to the top of the tableview
searchBar.frame = CGRectMake(0, b.origin.y, b.size.width, 44);
}
そして最後の部分は、検索後にすべてを復元することです。
- (void)searchDisplayControllerDidEndSearch:(UISearchDisplayController *)controller {
// Restore header alpha
searchContainer.alpha = 1.0;
// Place the searchbar back to the tableview
[searchBar removeFromSuperview];
[searchContainer addSubview:searchBar];
// Refresh position and redraw
CGPoint co = self.tableView.contentOffset;
[self.tableView setContentOffset:CGPointZero animated:NO];
[self.tableView setContentOffset:co animated:NO];
}
于 2015-01-05T16:58:04.083 に答える