Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iCarouselを備えたビューコントローラがあります。
UIアラートの表示方法を知っているアイテムをタップすると、View Controllerを変更して、作成済みの他のViewControllerに移動したいと思います。
私はあなたがこのようなものを必要としていると推測しています:
MyOtherViewControllersName *vc =[[MyOtherViewControllersName alloc]initWithNibName:@"MyOtherViewControllersName" bundle:nil]; [self presentModalViewController:vc animated:YES];
アラートメッセージを生成するのと同じ方法でそれを置くだけです。