|
|
@@ -6,10 +6,24 @@ |
|
|
|
@property (nonatomic, assign) OPASearchViewController *searchViewController; |
|
|
|
@end |
|
|
|
|
|
|
|
@interface OPAZeroStateViewController |
|
|
|
-(void)openMicForVoiceQuery; |
|
|
|
@end |
|
|
|
|
|
|
|
%hook OPAViewController |
|
|
|
-(void)viewDidLoad{ |
|
|
|
%orig; |
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self.searchViewController selector:@selector(didTapOnGlifView) name:UIApplicationDidBecomeActiveNotification object:nil]; |
|
|
|
[self.searchViewController didTapOnGlifView]; |
|
|
|
} |
|
|
|
%end |
|
|
|
%end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%hook OPAZeroStateViewController |
|
|
|
-(void)viewDidLoad{ |
|
|
|
%orig; |
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(openMicForVoiceQuery) name:UIApplicationDidBecomeActiveNotification object:nil]; |
|
|
|
[self openMicForVoiceQuery]; |
|
|
|
} |
|
|
|
%end |