K3

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
@interface K3ViewController : UIViewController<UIAlertViewDelegate>

@end


#import "K3ViewController.h"

@interface K3ViewController ()
@property (weak, nonatomic) IBOutlet UILabel *resultLabel;

@end

@implementation K3ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    UIAlertView *versionMessageBox = [[UIAlertView alloc] initWithTitle:@"This is a test title"
                                                                message:@"This is a test message for displaying nothing in details."
                                                               delegate:self
                                                      cancelButtonTitle:@"Yes"
                                                      otherButtonTitles:@"No", nil];
    [versionMessageBox show];
}

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    
    self.resultLabel.text =[NSString stringWithFormat:@"You have chosen %@",
                            [alertView buttonTitleAtIndex:buttonIndex]];
}

  

posted on 2014-05-26 07:34  K3  阅读(870)  评论(0编辑  收藏  举报