この方法を簡略化する方法はありますか?恐らく両方のステートメントをfor-loopで一緒に& &への道にしますか?このIBOutletConnection文を単純化する方法はありますか?
// Enable valid decimal buttons
- (IBAction)enableDecimalValues
{
for(UIButton *decimalButton in nonOctalValueCollection)
{
decimalButton.enabled = YES;
[decimalButton setAlpha:1];
}
for(UIButton *decimalButton in nonBinaryValueCollection)
{
decimalButton.enabled = YES;
[decimalButton setAlpha:1];
}
}
ちょうど副次的な点は、ドットと括弧で表記された表記が互いに隣り合っていることを少し奇妙に見ることができます(この場合、一貫して扱いやすくなります)。 –