9 #import <UIKit/UIKit.h>
11 #if NS_BLOCKS_AVAILABLE
22 @property(nonatomic, weak) IBOutlet id<UIADimmingViewDelegate>
delegate;
52 UIViewController *_contentsController;
55 id<UIAResultDisplayDelegate> _delegate;
57 unsigned int visible:1;
58 unsigned int animating:1;
59 unsigned int hidNavigationBar:1;
60 unsigned int navigationBarHidingEnabled:1;
61 unsigned int resultViewLoaded:1;
62 unsigned int delegateWillShowSearchResultView:1;
63 unsigned int delegateDidShowSearchResultView:1;
64 unsigned int delegateWillHideSearchResultView:1;
65 unsigned int delegateDidHideSearchResultView:1;
66 unsigned int delegateShouldShowDimmingView:1;
67 unsigned int delegateShouldReloadResultView:1;
68 unsigned int delegateReloadResultView:1;
69 } _resultDisplayControllerFlags;
76 - (instancetype)initWithContentsController:(UIViewController *)viewController;
87 @property(nonatomic,weak) IBOutlet id<UIAResultDisplayDelegate>
delegate;
100 @property(nonatomic,getter=isActive) BOOL active;
107 - (void)setActive:(BOOL)visible animated:(BOOL)animated;
113 @property(nonatomic,readonly) IBOutlet UIViewController *contentsController;
118 @property(nonatomic,weak) IBOutlet UIView *inputView;
123 @property(nonatomic,strong) IBOutlet UIView *resultView;
This protocol defines delegate methods for UIDimmingView objects.
Definition: UIAResultDisplayController.h:29
A result display controller manages display of a input view and a result view that displays the resul...
Definition: UIAResultDisplayController.h:50
IBOutlet id< UIADimmingViewDelegate > delegate
The view's delegate.
Definition: UIAResultDisplayController.h:22
Definition: UIAResultDisplayController.h:131
A general dimming view to implement dimming like UISearchDisplayController is dimmed.
Definition: UIAResultDisplayController.h:17