diff options
author | matthew <matthew> | 2008-10-02 16:32:27 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-10-02 16:32:27 +0000 |
commit | 1e276f5555ca52c43b62954327cc44f40b8b0f58 (patch) | |
tree | df3b7807016ace0e1e0d3e781fba3cf287324a4d /iphone/FixMyStreet/Classes/imageCell.h | |
parent | 37f57cc8b8332ba5a19e39657d388d3cc7a5b656 (diff) |
Initial revision
Diffstat (limited to 'iphone/FixMyStreet/Classes/imageCell.h')
-rw-r--r-- | iphone/FixMyStreet/Classes/imageCell.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/iphone/FixMyStreet/Classes/imageCell.h b/iphone/FixMyStreet/Classes/imageCell.h new file mode 100644 index 000000000..585ca7da1 --- /dev/null +++ b/iphone/FixMyStreet/Classes/imageCell.h @@ -0,0 +1,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 |