何らかの理由でアラートが機能していませんか?私がNSLog(@" %@ ", url)
その罰金を使用する場合...しかしここに警告はありません:
- (void)alertURL:(NSURL *)url {
UIAlertView *someError = [[UIAlertView alloc] initWithTitle: url message: @"Error sending your info to the server" delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil];
[someError show];
[someError release];
}
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
[self alertURL:url];
return YES;
}
誰かが私に何がうまくいかないのか指摘できますか:(