如何在TTButton上设置click方法?

时间:2011-02-27 23:18:54

标签: iphone objective-c three20

我正在使用TTCatalog并使用以下内容创建TTButton:

TTButton *button = [TTButton buttonWithStyle:@"toolbarButton:" title:@"click button"];

我尝试添加目标和操作,但这不起作用。我该如何使用它?

1 个答案:

答案 0 :(得分:2)

你错过了“[”。

TTButton *button = [TTButton buttonWithStyle:@"toolbarButton:" title:@"click button"];
[button setUserInteractionEnabled:YES]; 
[button addTarget:self action:@selector(buttonPressed:event:) forControlEvents:UIControlEventTouchUpInside]; 

然后只需设置按钮属性,使用target / action设置事件处理程序。 (TTButton只是一个UIEvent子类。)

祝你好运!