Skip to content

Instantly share code, notes, and snippets.

@gonzalezreal
Created November 3, 2012 15:01
Show Gist options
  • Save gonzalezreal/4007591 to your computer and use it in GitHub Desktop.
Save gonzalezreal/4007591 to your computer and use it in GitHub Desktop.
#import <UIKit/UIKit.h>
@class TGRTweet;
@class TGRProfileImageView;
@interface TGRTweetCell : UITableViewCell
@property (strong, nonatomic) TGRProfileImageView *profileImageView;
@property (strong, nonatomic) UILabel *nameLabel;
@property (strong, nonatomic) UILabel *dateLabel;
@property (strong, nonatomic) UILabel *statusLabel;
@property (strong, nonatomic) UILabel *retweetedByLabel;
+ (CGFloat)heightForTweet:(TGRTweet *)tweet;
- (void)configureWithTweet:(TGRTweet *)tweet;
- (void)configureDateLabelWithDate:(NSDate *)date;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment