mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
23 lines
586 B
Objective-C
23 lines
586 B
Objective-C
//
|
|
// ActivityCell.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 7/13/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "OHAttributedLabel.h"
|
|
|
|
@interface ActivityCell : UITableViewCell {
|
|
OHAttributedLabel *activityLabel;
|
|
UIImageView *faviconView;
|
|
}
|
|
|
|
@property (nonatomic, strong) OHAttributedLabel *activityLabel;
|
|
@property (nonatomic, strong) UIImageView *faviconView;
|
|
|
|
- (int)setActivity:(NSDictionary *)activity withUserProfile:(NSDictionary *)userProfile withWidth:(int)width;
|
|
- (NSString *)stripFormatting:(NSString *)str;
|
|
|
|
@end
|