blob: e1c71ae854156b43dedcca4dd560e47903ffcda9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//
// PhotoViewController.h
// acidcow
//
// Created by Matthew Handler on 4/18/11.
// Copyright 2011 Earl Industries. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <Three20/Three20.h>
#import "Topic.h"
@interface PhotoViewController : TTThumbsViewController <NSURLProtocolClient> {
NSArray *photoList;
NSMutableData *_acidcowPage;
Topic *topic;
}
@property (nonatomic, retain) NSArray *photoList;
@property (retain) NSMutableData *_acidcowPage;
@property (retain) Topic *topic;
-(void)convertArray;
@end
|