This commit is contained in:
Norbert Schmidt
2018-05-15 12:08:35 +02:00
commit 2a483f5b86
129 changed files with 8809 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
//
// PFPurchaseTableViewCell.h
// Parse
//
// Created by Qian Wang on 5/21/12.
// Copyright (c) 2012 Parse Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "PFTableViewCell.h"
typedef enum {
PFPurchaseTableViewCellStateNormal,
PFPurchaseTableViewCellStateDownloading,
PFPurchaseTableViewCellStateDownloaded
} PFPurchaseTableViewCellState;
@interface PFPurchaseTableViewCell : PFTableViewCell
@property (nonatomic, assign) PFPurchaseTableViewCellState state;
@property (nonatomic, retain, readonly) UILabel *priceLabel;
@property (nonatomic, retain, readonly) UIProgressView *progressView;
@end