Easytracker describes the following:
Use TrackedUIViewController to automatically emit pageviews when the view
// associated with the controller appears.
And then, if you look at an example, they will do the following:
#import "EasyTracker.h"
@interface FirstViewController : TrackedUIViewController
However, in my case, the interface looks like this:
@interface MyTableViewController : UITableViewController<FBRequestDelegate,
FBDialogDelegate,UIGestureRecognizerDelegate>{
User *user;
Fam *fam;
}
What should I do to add tracking?
source
share