mirror of
https://github.com/UrbanApps/Armchair.git
synced 2026-01-14 14:23:25 +01:00
Update code for Review From App using StoreKit (iOS >= 10.3) #63
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hardik99 on GitHub (Jul 5, 2017).
Hey ,
Update repository for review using StoreKit added by Apple from iOS >= 10.3
SKStoreReviewController.requestReview()@perteraul commented on GitHub (Jul 6, 2017):
+1 on this. It would be awesome.
@perteraul commented on GitHub (Jul 6, 2017):
@hardik99
I needed this, so I tweaked the Armchair.swift file in order to create a workaround. Here's what works for me, though I'm not sure it's the best practice out there and if it'll work for you.
http://snpy.in/OkQpZF
In the
rateApp()function I changed the currentif #available(iOS 10.3, *)intoelse if #available(iOS 10.2, *)and added a newif #available(iOS 10.3, *) { SKStoreReviewController.requestReview() }before the iOS 10.2.@ArturoLee commented on GitHub (Jul 14, 2017):
@perteraul Nice work. I thought it was weird this library didn't have that. Can you do a pull request?
@ari3l commented on GitHub (Jul 16, 2017):
This is already implemented
To use the new iOS 10.3 prompt simply do:
Armchair.useStoreKitReviewPrompt(true)Perhaps this should be added to the docs.
@ArturoLee commented on GitHub (Jul 16, 2017):
@ari3l You're right. This issue should be closed. And documentation would be helpful
@hardik99 commented on GitHub (Jul 17, 2017):
Great. It will be very helpful.
Thanks.