NewsBlur/clients/ios/Classes/ActivityCell.h

33 lines
830 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-21 18:25:56 -07:00
@interface ActivityCell : UITableViewCell {
UILabel *activityLabel;
2012-07-21 18:25:56 -07:00
UIImageView *faviconView;
int topMargin;
int bottomMargin;
int leftMargin;
int rightMargin;
int avatarSize;
2012-07-13 16:02:21 -07:00
}
@property (nonatomic, strong) UILabel *activityLabel;
2012-07-21 18:25:56 -07:00
@property (nonatomic, strong) UIImageView *faviconView;
@property (readwrite) int topMargin;
@property (readwrite) int bottomMargin;
@property (readwrite) int leftMargin;
@property (readwrite) int rightMargin;
@property (readwrite) int avatarSize;
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