我正在使用TTCatalog并使用以下内容创建TTButton:
TTButton *button = [TTButton buttonWithStyle:@"toolbarButton:" title:@"click button"];
我尝试添加目标和操作,但这不起作用。我该如何使用它?
答案 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子类。)
祝你好运!