How to insert the GAITrackedViewController from Google Analytics into the code below without removing the UITableViewController from this line?
@interface STNavigationViewController:UITableViewController <NSXMLParserDelegate>
Does this possibility exist? In my case I need to implement the two 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