blob: 585ca7da189903522648a04609955cd979b93ad6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// imageCell.h
// FixMyStreet
//
// Created by Matthew on 29/09/2008.
// Copyright 2008 UK Citizens Online Democracy. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface imageCell : UITableViewCell {
UILabel* labelView;
UIImageView* imageView;
}
@property (nonatomic, retain) UIImageView* imageView;
@property (nonatomic, retain) UILabel* labelView;
-(void)setData:(UIImage *)newImage;
@end
|