問題タブ [uisearchbardisplaycontrol]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ios - UISearchDisplayController 結果が 3 ~ 6 秒遅れる
検索に文字を入力すると、約 4 秒間ラグが発生し、何もできません。他のすべてはうまくいきます。UISearchDisplayController は、私が欲しいものを見つけてくれます。セグエはうまく機能します。それがメモリに関するものなのか、コードの間違いによるものなのかはわかりません。誰でも私を助けることができますか?ありがとう
私のコード
TableViewController.m
ios7 - UISearchBar と TableViewController
私は完全に機能するTableViewを持っていました。で検索を含めましTableView
たSearchBar component and Display ViewController
。NSArray _rotulos によって取り込まれたラベルに基づいて検索を実行したいと考えています。
viewDidLoad メソッドにコンテンツを入力します (オブジェクトは他にもありますが、これは単なる例です)
cellForRowAtIndexPath メソッドに入力します
これはうまくいきます。検索バーをクリックして入力を開始すると問題が発生します。
この検索を行うコードは次のとおりです。
NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"_rotulos contains[c] %@", searchText];
This is my output Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<__NSCFConstantString 0x243c8> valueForUndefinedKey:]: this class is not key valuecoding-compliant for the key _rotulos.' という行に問題があります。
私はこのチュートリアルに従いますが、私の場合、_rotulos は一部のクラスのプロパティではなく、NSArray です。
どうすれば修正できますか?何かを投稿するのを忘れていたらごめんなさい。
ios - 検索 Display Controller 表示追加 tableView
検索バーに単語を挿入した後、別のテーブル ビューが表示されるのはなぜですか?
検索ボックスに書き込む前に
検索ボックスに書き込んだ後
私が使用しているコードは次のとおりです。
ios7 - UISearchBar は SearchBarInNavigationBar を表示します
検索バーがナビゲーション バーにスライドする Twitter アプリの機能を再現したいと考えています。
しかし、私は問題に遭遇しました。追加しなければ
viewDidLoad にバーが表示されません。クリックすると右側のナビゲーション項目に検索ボタンがあり、上記のメソッドを呼び出します。検索バーが描画されるようにするためにできることはありますか?
json - Xcode 5 の UISearchBar
Json データ テーブルに UISearchBar オプションを実装しました。ただし、検索しようとすると、プログラムがクラッシュします。これに関するヘルプを高く評価します。
私のテーブルビューコントローラーのヘッダーと実装ファイルを以下に示します
ヘッダーファイル。
実装ファイル
ios - Why combined search bar and scope bar don't align correctly?
First of all, quote form iOS User Interface Guidelines
When a search bar is present, a scope bar can appear near it. The scope bar displays below the search bar, regardless of orientation, unless you use a search display controller in your code (for more information on the way this works, see UISearchDisplayController Class Reference). When you use a search display controller, the scope bar is displayed within the search bar to the right of the search field when the device is in landscape orientation (in portrait orientation, it’s below the search bar).
My problem is search input field doesn't align with scope bar, as showed in the picture.
Anyone knows what causes this?