Object_C 宏的定义格式

来源:互联网 发布:安静的电影 知乎 编辑:程序博客网 时间:2024/04/29 06:25
UIAlertView 宏定义:
#defineALERT_MSG(title,msg)\
{\
UIAlertView*_alert=[[UIAlertView alloc] initWithTitle:title message:msgdelegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil];\
_alert.transform=CGAffineTransformMakeTranslation(0,80); \
[_alert show];\
[_alert release];\

}

通过下面利用,第一个是标题,第二个是提示
ALERT_MSG(@"提示",@"您现在未设置服务器IP");


原创粉丝点击