我有一个UIAlertView
显示此代码的代码,要求您对应用商店中的应用程序进行评分。
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Rate on the Appstore!"
message:@""
delegate:self
cancelButtonTitle:@"Later"
otherButtonTitles:@"OK", nil];
[alert show];
[alert release];
但我不知道如何向 OK 按钮添加一个操作,将您带到AppStore中的应用程序。