15 lines
303 B
Objective-C
15 lines
303 B
Objective-C
//
|
|
// RootViewController.h
|
|
// CuteAnimals
|
|
//
|
|
// Copyright 2012 Google, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface RootViewController :
|
|
GAITrackedViewController<UITableViewDelegate, UITableViewDataSource>
|
|
|
|
@property(nonatomic, strong) IBOutlet UITableView *tableView;
|
|
|
|
@end
|