![]() |
Ignite Tools
|
00001 // 00002 // EventCell.h 00003 // IgniteTools 00004 // 00005 // Created by Joseph Flasher on 6/21/11. 00006 // Copyright 2011 Ars Sollertia. All rights reserved. 00007 // 00008 00009 #import <UIKit/UIKit.h> 00010 00011 #define EVENT_CELL_IDENTIFIER @"Event Cell Identifier" 00012 00016 @interface EventCell : UITableViewCell { 00017 IBOutlet UILabel *nameLabel; 00018 IBOutlet UILabel *dateLabel; 00019 IBOutlet UILabel *locationLabel; 00020 IBOutlet UILabel *detailLabel; 00021 } 00022 00026 @property (nonatomic, retain) IBOutlet UILabel *nameLabel; 00027 00031 @property (nonatomic, retain) IBOutlet UILabel *dateLabel; 00032 00036 @property (nonatomic, retain) IBOutlet UILabel *locationLabel; 00037 00041 @property (nonatomic, retain) IBOutlet UILabel *detailLabel; 00042 00046 + (NSString *)reuseIdentifier; 00047 00048 @end