-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSBAssistantGuideDomainListCell.h
More file actions
33 lines (29 loc) · 981 Bytes
/
SBAssistantGuideDomainListCell.h
File metadata and controls
33 lines (29 loc) · 981 Bytes
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
/**
* This header is generated by class-dump-z 0.2-0.
* class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3.
*
* Source: (null)
*/
#import <XXUnknownSuperclass.h> // Unknown library
@class UIImageView, UILabel;
@protocol SBAssistantGuideDomainListCellDelegate;
@interface SBAssistantGuideDomainListCell : XXUnknownSuperclass {
id<SBAssistantGuideDomainListCellDelegate> _delegate;
UIImageView* _iconView;
UILabel* _tagPhraseLabel;
UILabel* _domainNameLabel;
UIImageView* _chevronView;
UIImageView* _separator;
}
@property(assign, nonatomic) id<SBAssistantGuideDomainListCellDelegate> delegate;
+(float)rowHeight;
-(id)initWithReuseIdentifier:(id)reuseIdentifier;
-(void)dealloc;
-(void)setSelected:(BOOL)selected animated:(BOOL)animated;
-(void)setHighlighted:(BOOL)highlighted animated:(BOOL)animated;
-(void)setDomainName:(id)name;
-(void)setTagPhrase:(id)phrase;
-(void)setIconImage:(id)image;
-(void)prepareForReuse;
-(void)layoutSubviews;
@end