うまくいけば、これは簡単な質問です。具体的な答えは見つかりません。エンタープライズアプリOTAを更新するためのすべての手順を実行しました。私の質問は、AFNetworkingを使用して電話をかけることはできますか?または、リンクを呼び出すための最良の方法は何ですか。(現在、afnetworkingはエラーを出しますが、それは私たちの側にあるかもしれません。)私はafnetworkingを排他的に使用しているので、必要がない限り変更しないでください。前もって感謝します
itms-services://?action = download-manifest&url = http://ourServer/Setup/manifest.plist
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:kiPADSetupLink]];
[request setTimeoutInterval:300];
NSLog(@"begin downloading app update");
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject)
{
// handle success
} failure:^(AFHTTPRequestOperation *operation, NSError *error)
{
// handle error
} ];
[operation start];