[ios] Added tracking for cancel search button

This commit is contained in:
VladiMihaylenko 2015-03-25 21:03:15 +03:00 committed by Alex Zolotarev
parent 45affed3a8
commit d26408b289

View file

@ -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];
}