mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 00:29:21 +00:00
27 lines
696 B
Objective-C
27 lines
696 B
Objective-C
//
|
|
// InAppProductsCell.h
|
|
// linphone
|
|
//
|
|
// Created by Gautier Pelloux-Prayer on 15/04/15.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <StoreKit/StoreKit.h>
|
|
|
|
@interface InAppProductsCell : UITableViewCell {
|
|
}
|
|
@property (retain, nonatomic) IBOutlet UILabel *ptitle;
|
|
@property (retain, nonatomic) IBOutlet UILabel *pdescription;
|
|
@property (retain, nonatomic) IBOutlet UILabel *pprice;
|
|
@property (retain, nonatomic) IBOutlet UISwitch *ppurchased;
|
|
@property (nonatomic) BOOL isMaximized;
|
|
@property (retain, nonatomic) NSString *productID;
|
|
|
|
- (id)initWithIdentifier:(NSString*)identifier maximized:(bool)maximized;
|
|
|
|
+ (CGFloat)getHeight:(BOOL)maximized;
|
|
|
|
- (void)fillFromProduct:(SKProduct*)prod;
|
|
|
|
@end
|