Storyboardでタップされたらアラートを出す処理

Tap Gesture Recognizerをビューにドロップしてアクション接続したメソッド内でUIAlertViewを使う。
f:id:arcright:20140703163857p:plain
Tap Gesture Recognizerはこんなの。
f:id:arcright:20140703163907p:plain
ドロップするとDockエリアに表示されるのでここからCtrl+ドラッグで引っ張る。

    UIAlertView *alert =
    [[UIAlertView alloc]
     initWithTitle:@"アラートです"
     message:@"注意です"
     delegate:nil
     cancelButtonTitle:nil
     otherButtonTitles:@"OK", nil
     ];
    [alert show];

これをメソッド内に書く。