ios实用技术

隐藏代码中的警告

2017-07-06  本文已影响0人  几分心动i

'transactionReceipt' is deprecated: first deprecated in iOS 7.0 - Use -[NSBundle appStoreReceiptURL]

/// 去除warning
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
NSData *receiptData = tran.transactionReceipt;
#pragma clang diagnostic pop

因为内购涉及到非续订型订阅,所以要使用tran.transactionReceipt这个方法获取receiptData只好用这个方法隐藏警告了。
使用[[NSBundle mainBundle] appStoreReceiptURL]的话验证返回数据中的in_app数组内容有好多,不好取出做验证。

上一篇下一篇

猜你喜欢

热点阅读