码迷,mamicode.com
首页 > 其他好文 > 详细

define实现ShowAlert

时间:2014-12-01 15:57:43      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   for   on   div   

 

#define ShowAlert(format, ...) myShowAlert(__LINE__, (char *)__FUNCTION__, format, ##__VA_ARGS__)

#ifdef DEBUG
#define DLog(format,...) NSLog((@"DLog %s - [Line %d] %s\n\n" format), __PRETTY_FUNCTION__,__LINE__, __FUNCTION__,##__VA_ARGS__)
#else
#define DLog(format,...) do {} while(0)
#endif

 

void myShowAlert(int line, char *functName, id formatstring,...){
    va_list arglist;
    if (!formatstring) {
        return;
    }
    va_start(arglist, formatstring);
    id outString = [[NSString alloc] initWithFormat:formatstring arguments:arglist];
    va_end(arglist);
    
    NSString *fileName = [[NSString stringWithCString:__FILE__ encoding:NSUTF8StringEncoding] lastPathComponent];
    
    NSString *defugInfo = [NSString stringWithFormat:@"file=%@ line=%d\n%s",fileName,line,functName];
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:outString message:defugInfo delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
    [alert show];
    
}

 

define实现ShowAlert

标签:style   blog   io   ar   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/xiaochaozi/p/4135087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!