2012-07-16 23:48:07 -07:00
|
|
|
//
|
|
|
|
// InteractionCell.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/16/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "OHAttributedLabel.h"
|
|
|
|
|
2012-07-21 15:59:10 -07:00
|
|
|
@interface InteractionCell : UITableViewCell {
|
2012-07-16 23:48:07 -07:00
|
|
|
OHAttributedLabel *interactionLabel;
|
2012-07-21 15:59:10 -07:00
|
|
|
UIImageView *avatarView;
|
2012-07-16 23:48:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@property (retain, nonatomic) OHAttributedLabel *interactionLabel;
|
2012-07-21 15:59:10 -07:00
|
|
|
@property (retain, nonatomic) UIImageView *avatarView;
|
2012-07-16 23:48:07 -07:00
|
|
|
|
2012-07-21 15:59:10 -07:00
|
|
|
- (int)setInteraction:(NSDictionary *)interaction withWidth:(int)width;
|
2012-07-16 23:48:07 -07:00
|
|
|
- (NSString *)stripFormatting:(NSString *)str;
|
2012-07-21 18:25:56 -07:00
|
|
|
|
2012-07-16 23:48:07 -07:00
|
|
|
@end
|