-(IBAction) buttonClick:(id)sender //sender参数,表示接受哪个按钮消息
{
UIButton *button = (UIButton *)sender; //参数id是一个通用内型,此处将其强制转换成UIButton内型
//每个button都有唯一的tag,系统默认陪标示用的,是一个整数
NSString *title =[NSString stringWithFormat:@"Button tag %d",button.tag];//将button tag 转换成字符串输出
NSString *mesage = [button currentTitle]; //取得button名称
}
网上搜的,记录一下
本文转自 驿落黄昏 51CTO博客,原文链接:http://blog.51cto.com/yiluohuanghun/1153314,如需转载请自行联系原作者