123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @class PSSpecifier;
- typedef NS_ENUM(NSInteger, PSCellType) {
- PSGroupCell,
- PSLinkCell,
- PSLinkListCell,
- PSListItemCell,
- PSTitleValueCell,
- PSSliderCell,
- PSSwitchCell,
- PSStaticTextCell,
- PSEditTextCell,
- PSSegmentCell,
- PSGiantIconCell,
- PSGiantCell,
- PSSecureEditTextCell,
- PSButtonCell,
- PSEditTextViewCell
- };
- @interface PSTableCell : UITableViewCell
- + (PSCellType)cellTypeFromString:(NSString *)cellType;
- - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier specifier:(PSSpecifier *)specifier;
- - (void)refreshCellContentsWithSpecifier:(PSSpecifier *)specifier;
- - (void)setSeparatorStyle:(UITableViewCellSeparatorStyle)style;
- @property (nonatomic, retain) PSSpecifier *specifier;
- @property (nonatomic) PSCellType type;
- @property (nonatomic, retain) id target;
- @property (nonatomic) SEL action;
- @property (nonatomic, retain) id cellTarget;
- @property (nonatomic) SEL cellAction;
- @property (nonatomic) BOOL cellEnabled;
- @property (nonatomic, retain) UIImage *icon;
- - (UIImage *)getLazyIcon;
- @property (nonatomic, retain, readonly) UIImage *blankIcon;
- @property (nonatomic, retain, readonly) NSString *lazyIconAppID;
- @property (nonatomic, retain, readonly) UILabel *titleLabel;
- @end
|