[F] Link [A] signout

This commit is contained in:
2024-08-24 19:23:39 +08:00
parent da367097c8
commit 728af3cfd7
11 changed files with 928 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
// iOSReview.m
#import <Foundation/Foundation.h>
#import <StoreKit/StoreKit.h>
extern "C" {
void RequestReview(const char* customReviewURL) {
if (@available(iOS 10.3, *)) {
[SKStoreReviewController requestReview];
} else {
NSString *url = [NSString stringWithUTF8String:customReviewURL];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
}
}
}