1
How to insert the Google Analytics Gaitrackedviewcontroller into the code below without removing the Uitableviewcontroller from this line?
@interface STNavigationViewController:UITableViewController <NSXMLParserDelegate>
Is there such a possibility? In my case I need to implement both resources.
Complete code:
#import <UIKit/UIKit.h>
#import "GAITrackedViewController.h"
@interface STNavigationViewController:UITableViewController <NSXMLParserDelegate> {
}
@property (strong, nonatomic) IBOutlet UITableView *tableView;
-(IBAction)back:(id)sender;
@end
In fact, there is no Google Analytics implementation to overwrite a
UITableViewController
, what you can try is using this tracker manual in your views.– Paulo Rodrigues