mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-04-01 08:45:09 +08:00
24 lines
550 B
Objective-C
24 lines
550 B
Objective-C
//
|
|
// ItemStyles.h
|
|
// Sample
|
|
//
|
|
// Created by Samuel Stow on 12/30/15.
|
|
// Copyright © 2015 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ItemStyles : NSObject
|
|
+ (NSDictionary *)titleStyle;
|
|
+ (NSDictionary *)subtitleStyle;
|
|
+ (NSDictionary *)distanceStyle;
|
|
+ (NSDictionary *)secondInfoStyle;
|
|
+ (NSDictionary *)originalPriceStyle;
|
|
+ (NSDictionary *)finalPriceStyle;
|
|
+ (NSDictionary *)soldOutStyle;
|
|
+ (NSDictionary *)badgeStyle;
|
|
+ (UIColor *)badgeColor;
|
|
+ (UIImage *)placeholderImage;
|
|
@end
|