forked from Awful/Awful.app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAwfulThreadCell.h
35 lines (22 loc) · 895 Bytes
/
AwfulThreadCell.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// AwfulThreadCell.h
// Awful
//
// Created by Nolan Waite on 2012-10-02.
// Copyright (c) 2012 Regular Berry Software LLC. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AwfulBadgeView.h"
@interface AwfulThreadCell : UITableViewCell
// Designated initializer.
- (id)initWithReuseIdentifier:(NSString *)reuseIdentifier;
@property (readonly, weak, nonatomic) UIImageView *secondaryTagImageView;
@property (readonly, weak, nonatomic) UIImageView *stickyImageView;
@property (nonatomic) CGSize stickyImageViewOffset;
@property (nonatomic) CGFloat rating;
@property (readonly, weak, nonatomic) UIImageView *ratingImageView;
@property (getter=isClosed, nonatomic) BOOL closed;
@property (readonly, weak, nonatomic) UILabel *originalPosterTextLabel;
@property (readonly, weak, nonatomic) AwfulBadgeView *unreadCountBadgeView;
@property (nonatomic) BOOL showsUnread;
@end