This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
travelguide/iOS/offlineguides/GuideCell.h
2013-08-11 14:44:15 +03:00

12 lines
332 B
Objective-C

#import <UIKit/UIKit.h>
@interface GuideCell : UITableViewCell
@property (nonatomic, strong) UIImageView * mainImage;
@property (nonatomic, strong) UILabel * mainTitile;
@property (nonatomic, strong) UILabel * subTitile;
- (id)initWithReuseIdentifier:(NSString *)reuseIdentifier;
- (void)setSelected;
- (void)setUnselected;
@end