iphone-common-codes-ccteam源代码 CCUIAlertView.m

//  
// CCUIAlertView.m
// CCFC
//
// Created by xichen on 11-12-17.
// Copyright 2011年 ccteam. All rights reserved.
//


#import "CCUIAlertView.h"




@implementation UIAlertView(cc)


// 显示消息框
+ (UIAlertView *)showAlertView:(NSString *)title
msg:(NSString *)msg
delegate:(id)delegate
okBtnTitle:(NSString *)okTitle
{
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:title
message:msg
delegate:delegate
cancelButtonTitle:nil
otherButtonTitles:okTitle, nil];
[alert show];
[alert release];

return alert;
}


@end

 

可能有更新:

googlecode连接地址:http://code.google.com/p/iphone-common-codes-ccteam/source/browse/trunk/CCFC/files/CCUIAlertView.m

github地址: https://github.com/cxsjabc/iphone-common-codes-ccteam/tree/master/CCFC/files/CCUIAlertView.mhtml

 

转载于:https://www.cnblogs.com/ccteam/archive/2012/01/06/2313959.htmlgit