这是我重定向的功能
AppDelegate.m
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
NSString *title = [alertView buttonTitleAtIndex:buttonIndex];
if([title isEqualToString:@"Okay"])
{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"Daily"];
[self.window.rootViewController presentViewController:vc animated:YES completion:nil];
}
}
我已将自定义页面设置为每日但不会重定向。 我只希望应用程序在警报视图按钮
后重定向到自定义页面