我有一个UIView
里面有按钮的。按钮不在某个数组中。
我想查看整个UIView
(使用for
循环)并通过其标题查找按钮,然后将其删除。
- (void)removeButtonByTitle:(NSString*)name
{
for (buttons in view) {
// find the button with the name "name" and remove it from the view
}
}
如果不将它们的名称/指针保存到数组,我找不到这样做的方法。