mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-09 06:00:43 +00: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
|