NewsBlur/media/ios/Classes/ActivityCell.h

24 lines
586 B
C
Raw Normal View History

2012-07-13 16:02:21 -07:00
//
// ActivityCell.h
// NewsBlur
//
// Created by Roy Yang on 7/13/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
2012-07-13 18:14:32 -07:00
#import "OHAttributedLabel.h"
2012-07-13 16:02:21 -07:00
2012-07-21 18:25:56 -07:00
@interface ActivityCell : UITableViewCell {
2012-07-13 18:14:32 -07:00
OHAttributedLabel *activityLabel;
2012-07-21 18:25:56 -07:00
UIImageView *faviconView;
2012-07-13 16:02:21 -07:00
}
@property (nonatomic, strong) OHAttributedLabel *activityLabel;
2012-07-21 18:25:56 -07:00
@property (nonatomic, strong) UIImageView *faviconView;
2012-07-13 16:02:21 -07:00
- (int)setActivity:(NSDictionary *)activity withUserProfile:(NSDictionary *)userProfile withWidth:(int)width;
2012-07-16 19:45:14 -07:00
- (NSString *)stripFormatting:(NSString *)str;
2012-07-13 16:02:21 -07:00
@end