搜尋

首頁  >  問答  >  主體

ios - A控制器跳轉B控制器,B黑屏?

1.storyBoard中有2個VC,分別套了導航。

#2.AVC跳轉BVC的方法,button連線的方法

- (IBAction)clickBtnToBvc:(id)sender {
    BViewController *vc = [[BViewController alloc]init];
    [self.navigationController pushViewController:vc animated:YES];
}

3.BVC黑屏,請問是什麼原因?

#
天蓬老师天蓬老师2739 天前858

全部回覆(3)我來回復

  • 世界只因有你

    世界只因有你2017-05-31 10:35:00

    你的B是在storyboard中建立的並綁定控件,所以要從storyboard載入

    BViewController * vc = [[UIStoryboard storyboardWithName:@"storyboard" bundle:nil] instantiateViewControllerWithIdentifier:@"IDENTITY"];
    [self.navigationController pushViewController:vc animated:YES];

    回覆
    0
  • PHP中文网

    PHP中文网2017-05-31 10:35:00

    嘗試一下為BViewController的view設定一個背景顏色

    回覆
    0
  • 给我你的怀抱

    给我你的怀抱2017-05-31 10:35:00

    把b的導航刪除

    回覆
    0
  • 取消回覆