blob: f09abd75646091870810a7d3ef1a1041c4026b36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//
// FirstViewController.h
// acidcow
//
// Created by Matthew Handler on 4/15/11.
// Copyright 2011 Earl Industries. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TopicsViewController.h"
@interface TabViewController : UIViewController {
TopicsViewController *topicsViewController;
//NSIndexPath *parserSelection;
//UIButton *startButton;
}
//@property (nonatomic, retain) IBOutlet UIButton *startButton;
@property (nonatomic, retain, readonly) TopicsViewController *topicsViewController;
//@property (nonatomic, retain) NSIndexPath *parserSelection;
@end
|