码迷,mamicode.com
首页 > 移动开发 > 详细

iOS内购步骤总结

时间:2016-04-05 23:04:12      阅读:1088      评论:0      收藏:0      [点我收藏+]

标签:

0:做内购需要添加系统框架storeKit.frameWork

1:登陆苹果开发者账号中去创建商品,即告诉苹果商场自己都卖哪些东西如图:技术分享

@interface ProductModel : NSObject

/**产品名称*/

@property (nonatomic, copy) NSString *name;

/**产品id*/

@property (nonatomic, copy) NSString *productID;

2:从服务器中取出商品,(封装:数据模型和请求模型)

@implementation AWDataTool

+(void)getProduct:(ResultBlock)resultBlock

{

    ProductModel *model = [[ProductModel alloc] init];

    model.name = @"大神跑鞋";

    model.productID = @"dashenpaoxie";

    

    resultBlock(@[model]);

    

}

3:将商品发送到苹果服务器,请求可以销售的商品;

    //服务器中取出商品

    [AWDataTool getProduct:^(NSArray<ProductModel *> *goods) {

        //取出商品ID

        NSArray *product = [goods valueForKey:@"productID"];        

        //将商品发送到苹果服务器,请求可以销售的商品

        NSSet *set = [NSSet setWithArray:product];

        SKProductsRequest *request = [[SKProductsRequest alloc] initWithProductIdentifiers:set];

        //设置代理从代理中获取哪些商品可以销售

        request.delegate = self;

        [request start];

    }];

 

#pragma mark - SKProductsRequestDelegate

/**

 *  当请求到结果时会调用该方法

 *

 *  @param request  请求

 *  @param response 响应

 */

-(void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response

{

    self.productList = response.products;

}

-----------------------------------uitableViewController所有代码如下-----------------------------------------

//

//  ViewController.m

//  大神一期内购测试

//

//  Created by apple on 16/4/5.

//  Copyright © 2016年 apple. All rights reserved.

//

 

#import "ViewController.h"

#import <StoreKit/StoreKit.h>

#import "XMGDataTool.h"

#import "XMGProduct.h"

 

@interface ViewController () <SKProductsRequestDelegate>

/** 能销售的商品列表 */

@property (strong, nonatomic) NSArray <SKProduct *> *products;

@end

 

@implementation ViewController

 

- (void)setProducts:(NSArray<SKProduct *> *)products {

    

    _products = products;

    

    [self.tableView reloadData];

    

}

 

- (void)viewDidLoad {

    [super viewDidLoad];

    // 1.从服务器获取商品

    [XMGDataTool getProducts:^(NSArray<XMGProduct *> *goods) {

        

        // 取出商品标示

        NSArray *identifiers = [goods valueForKeyPath:@"proId"];

        

        // 将商品标示发送到苹果服务器,请求可以销售的商品

        NSSet *set = [[NSSet alloc] initWithArray:identifiers];

        // 请求对象

        SKProductsRequest *request = [[SKProductsRequest alloc] initWithProductIdentifiers:set];

        

        // 设置代理,从代理中获取哪些商品可以销售

        request.delegate = self;

        

        // 开始请求

        [request start];

    }];

 

}

 

 

#pragma mark - SKProductsRequestDelegate

/**

 *  当请求到结果时会调用该方法

 *

 *  @param request  请求

 *  @param response 响应

 */

- (void)productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response {

 

    

    NSLog(@"%@",response.products);

    

    self.products = response.products;

    

}

 

#pragma mark - 数据源

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return self.products.count;

}

 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *ID = @"cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    if (cell == nil) {

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];

    }

    

    // 1.取出模型

    SKProduct *product = self.products[indexPath.row];

    

    // 2.设置数据

    cell.textLabel.text = product.localizedTitle;

    cell.detailTextLabel.text = product.localizedDescription;

    

    return cell;

}

 

**

 *  当交易状态发生改变时会调用该方法

 *

 *  @param queue        交易队列

 *  @param transactions 交易商品数组

 */

- (void)paymentQueue:(SKPaymentQueue *)queue updatedTransactions:(NSArray<SKPaymentTransaction *> *)transactions NS_AVAILABLE_IOS(3_0) {

//SKPaymentTransactionStatePurchasing, 正在支付

//SKPaymentTransactionStatePurchased,  支付成功

//SKPaymentTransactionStateFailed,     支付失败

//SKPaymentTransactionStateRestored,   恢复购买

//SKPaymentTransactionStateDeferred    延迟购买

 

    

    [transactions enumerateObjectsUsingBlock:^(SKPaymentTransaction * _Nonnull transaction, NSUInteger idx, BOOL * _Nonnull stop) {

    

    

        

        switch (transaction.transactionState) {

            case SKPaymentTransactionStatePurchasing:

                NSLog(@"正在支付");

                break;

                

                

            case SKPaymentTransactionStatePurchased:

                

                // 当支付完成时,一定要将该订单,从支付队列中移除

                [queue finishTransaction:transaction];

                NSLog(@"支付成功");

                break;

                

                

            case SKPaymentTransactionStateFailed:

                // 当支付失败时,一定要将该订单,从支付队列中移除

                [queue finishTransaction:transaction];

                NSLog(@"支付失败");

                

                break;

                

                

            case SKPaymentTransactionStateRestored:

                NSLog(@"恢复购买");

                // 当恢复时,一定要将该订单,从支付队列中移除

                [queue finishTransaction:transaction];

                break;

                

                

            case SKPaymentTransactionStateDeferred:

                NSLog(@"延迟购买");

                break;

                

            default:

                break;

        }

        

    }];

 

}

 

 

#pragma mark - 数据源

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return self.products.count;

}

 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *ID = @"cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    if (cell == nil) {

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];

    }

    

    // 1.取出模型

    SKProduct *product = self.products[indexPath.row];

    

    // 2.设置数据

    cell.textLabel.text = product.localizedTitle;

    cell.detailTextLabel.text = product.localizedDescription;

    

    return cell;

}

 

#pragma mark - 代理

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    

    // 1.取出选中的商品

    SKProduct *product = self.products[indexPath.row];

    

    // 2.根据商品开一个小票

    SKPayment *payment = [SKPayment paymentWithProduct:product];

    

    // 3.将小票添加到队列中

    SKPaymentQueue *queue = [SKPaymentQueue defaultQueue];

    [queue addPayment:payment];

    

    // 4.监听交易状态

    [queue addTransactionObserver:self];

    

}

 

 

@end

 

iOS内购步骤总结

标签:

原文地址:http://www.cnblogs.com/applestore/p/5357163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!