Stripe SDKが原因でビルドが失敗します。具体的なエラーは次のとおりです。
'__strong STPAPIResponseBlock _Nonnull'(aka 'void(^ __ strong)(ResponseType _Nullable __strong、NSHTTPURLResponse * _Nullable __strong、NSError * _Nullable __strong)'を送信する互換性のないブロックポインタータイプ
タイプ 'void(^ _Nonnull)(STPSource * _Nullable __strong、NSHTTPURLResponse * _Nullable __strong、NSError * _Nullable __strong)'のパラメーターに
失敗しているコードは、STPAPIClient.m内の次のとおりです...
- (NSURLSessionDataTask *)retrieveSourceWithId:(NSString *)identifier clientSecret:(NSString *)secret responseCompletion:(STPAPIResponseBlock)completion {
NSString *endpoint = [NSString stringWithFormat:@"%@/%@", APIEndpointSources, identifier];
NSDictionary *parameters = @{@"client_secret": secret};
return [STPAPIRequest<STPSource *> getWithAPIClient:self
endpoint:endpoint
parameters:parameters
deserializer:[STPSource new]
completion:completion];
}
すべてが正常に機能していました。Xcodeが更新されたと思います。今、私はこの問題を抱えています。Stripe SDK(CocoaPods経由でインストールされたもの)以外に何もない状態で新しいアプリをゼロから構築しようとしましたが、失敗しました。
以前のバージョンのXcodeにロールバックする前に、どんな助けもいただければ幸いです。