// // APViewController.h // AliSDKDemo // // Created by 方彬 on 11/29/13. // Copyright (c) 2013 Alipay.com. All rights reserved. // #import // //测试商品信息封装在Product中,外部商户可以根据自己商品实际情况定义 // @interface Product : NSObject{ @private float _price; NSString *_subject; NSString *_body; NSString *_orderId; } @property (nonatomic, assign) float price; @property (nonatomic, copy) NSString *subject; @property (nonatomic, copy) NSString *body; @property (nonatomic, copy) NSString *orderId; @end @interface APViewController : UIViewController @property(nonatomic, strong)NSMutableArray *productList; @property (nonatomic, strong) NSDictionary *orderDic; @end