forked from whilethis/Super-Checkout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductDetailsViewController.h
executable file
·33 lines (28 loc) · 1.05 KB
/
ProductDetailsViewController.h
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
33
//
// ProductDetailsViewController.h
// Super Checkout
//
// Created by Brandon Alexander on 3/8/11.
// Copyright 2011 While This, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SuperCheckoutAPIEngine.h"
@class QuantityCell;
@interface ProductDetailsViewController : UITableViewController<SuperCheckoutAPIEngineDelegate> {
NSDictionary *selectedProduct;
UIView *productDetailsHeader;
UIImageView *productImage;
UILabel *productNameLabel;
UILabel *productPriceLabel;
UITableViewCell *addToBasketCell;
QuantityCell *quantityCell;
SuperCheckoutAPIEngine *apiEngine;
}
@property(retain, nonatomic) NSDictionary *selectedProduct;
@property (nonatomic, retain) IBOutlet UIView *productDetailsHeader;
@property (nonatomic, retain) IBOutlet UIImageView *productImage;
@property (nonatomic, retain) IBOutlet UILabel *productNameLabel;
@property (nonatomic, retain) IBOutlet UILabel *productPriceLabel;
@property (nonatomic, retain) IBOutlet UITableViewCell *addToBasketCell;
@property (nonatomic, retain) IBOutlet QuantityCell *quantityCell;
@end