|
|
wait_fences: failed to receive reply: 10004003 的疑惑
<div class="postbody"><div id="cnblogs_post_body">废话不说,先上代码:
<div class="cnblogs_code"> 1 - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex 2 { 3 switch (buttonIndex) { 4 case 0:{ 5 // 进入搜索页面查询适合岗位。 6 [self.navigationController popToRootViewControllerAnimated:NO]; 7 AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate]; 8 UITabBarController *tabbarController = [appDelegate tabbarController]; 9 [tabbarController setSelectedIndex:1];10 }11 break;12 case 1:{13 [self.navigationController popToRootViewControllerAnimated:YES];14 }15 break;16 default:17 break;18 }19 } |
|