ユーザーがボタンをタップすると、テキストが表示されたポップアップビューになるように機能を追加したいIphoneアプリケーションがあります。彼がもう一度タップしたときに別のテキストが必要です。
質問する
140 次
1 に答える
1
モーダルView Controllerを提示する必要があるようです。UIViewController
「ポップアップ」するビューを管理するためにを作成します。次にpresentModalViewController:
、ビューを表示するために使用します。
YourPopUpViewController *vc = [[YourPopUpViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:vc animated:YES];
戻るには、次のコードを のどこかに実装しますYourPopUpViewController
。
[self dismissModalViewControllerAnimated:YES];
于 2012-04-19T17:08:16.810 に答える