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.
我正在创建多个 UIButtons (example- around 40 buttons) inUIScrollview`,我想为选择的第一个和最后一个按钮获取一个字符串(从 - 到)
UIButtons (example- around 40 buttons) in
您不需要任何tags大数组来保存所有标题并匹配以检索该标题。但是有一个简单的方法。
tags
只需创建一个操作方法并将所有按钮连接到此方法。
然后当用户按下按钮时,动作方法将被调用。
在该方法中获取该按钮的标题并将其存储在NSMutableArray. 所以你现在在按下两个按钮后得到了两个标题。
NSMutableArray
- (IBAction)buttonPressed:(UIButton *)sender { [titleArray addObject:sender.titleLabel.text ]; }