スポンサーリンク

【Obj-C】UIAlertView コピーペーストで使えるサンプル

UIAlertView サンプル

コーディング時に大枠を何処かからコピーペーストして修正実装

するパターンがよくあると思います。

実装時、コピペ用のテンプレートとしてご利用ください。

コードサンプル

■ 基本
UIAlertView *alertView = [
      [UIAlertView alloc]
      initWithTitle : NSLocalizedString(@"Title", nil)
      message : NSLocalizedString(@"Message", nil)
      delegate : self
      cancelButtonTitle : NSLocalizedString(@"OK", nil)
      otherButtonTitles : nil
      ];
alertView.tag = 1;
alertView.cancelButtonIndex = 1;
[alertView show];

■ デリゲート
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    if(alertView.tag == 1) {
        if(buttonIndex == 0) {

        }
    }
}

 

 

 

 

 

 

 

タイトルとURLをコピーしました