Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
也许我在这里遗漏了一些东西,但我希望用户能够选择 aUIProgressView并因此有一个IBAction函数调用(基本上让它表现得像 a UIButton)。
UIProgressView
IBAction
UIButton
这不可能是火箭科学,但我想不通。
顺便说一句,我有 xCode 4。
添加手势识别器。你可以让UITapGestureRecognizer任何 UIView(或子类)实例响应点击。您必须在代码中而不是在 IB 中执行此操作,这意味着您需要IBOutlet连接到进度视图。您可能需要设置userInteractionEnabled为YES使其工作。
UITapGestureRecognizer
IBOutlet
userInteractionEnabled
YES
很难想象这样的场景是有意义的,但我只是假设你有充分的理由,然后就这样吧。