我如何找到引用UIButton的内容?

时间:2013-02-24 09:24:36

标签: ios objective-c xcode ipad uibutton

我希望特定UIButtonUISwitchOFF移动到ON后更改颜色。我该怎么做

- (IBAction) Court1ON {
//here
}

在我的故事板中引用特定的UIButton

1 个答案:

答案 0 :(得分:0)

您有几种可能性:

  1. 在故事板中为您的按钮分配tag;然后通过以下方式访问按钮:

    [self.view.viewByTag:buttonTag];
    
  2. 创建类型为IBOutlet的{​​{1}} @property并将其绑定到您的按钮。