You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Scope bar functionality by making the following changes:
DialogViewController:
bool enableScope;
public bool EnableScope {
get {
return enableScope;
}
set {
if (enableScope == value)
return;
if (tableView != null)
throw new ArgumentException ("You should set EnableScope before the controller is shown");
enableScope = value;
}
}
DialogViewController -> SetupSearch()
replace
searchBar = new UISearchBar (new RectangleF (0, 0, tableView.Bounds.Width, 44)) {
with
var height = (enableScope) ? 90 : 44;
searchBar = new UISearchBar (new RectangleF (0, 0, tableView.Bounds.Width, height)) {
The text was updated successfully, but these errors were encountered:
Add Scope bar functionality by making the following changes:
DialogViewController:
DialogViewController -> SetupSearch()
replace
with
The text was updated successfully, but these errors were encountered: