forked from organicmaps/organicmaps
[ios] Added tracking for cancel search button
This commit is contained in:
parent
45affed3a8
commit
d26408b289
1 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
|
||||
#import "SearchBar.h"
|
||||
#import "Framework.h"
|
||||
#import "../../../3party/Alohalytics/src/alohalytics_objc.h"
|
||||
|
||||
@interface SearchBar ()
|
||||
|
||||
|
@ -13,6 +14,8 @@
|
|||
|
||||
@end
|
||||
|
||||
extern NSString * const kAlohalyticsTapEventKey;
|
||||
|
||||
@implementation SearchBar
|
||||
|
||||
- (id)initWithFrame:(CGRect)frame
|
||||
|
@ -62,6 +65,7 @@
|
|||
|
||||
- (void)cancelButtonPressed:(id)sender
|
||||
{
|
||||
[Alohalytics logEvent:kAlohalyticsTapEventKey withValue:@"searchCancel"];
|
||||
[self.delegate searchBarDidPressCancelButton:self];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue