blob: 471022d480642b50eb8dcd61eb8ec7173b4f630f (
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> {
NSMutableData *_receivedData;
Topic *topic;
}
@property (retain) NSMutableData *_receivedData;
@property (retain) Topic *topic;
-(void)convertArray;
-(void)loadImages;
@end
|