以下は私が使用しているコードです。 addQuanityを押すとm_labelが設定され、2つではなく1つが表示されます。 addWuantityをもう一度押すとm_labelが表示されます2. minusQuantityを押すとm_labelが2に変わりますが、minusQuanityを押すとm_labelが2に変わります。行方不明のアイデアは?カウンター++ /カウンター - 期待通りに動作しない
おかげで、 ライアン
NSInteger counter = 1;
-(IBAction) addQuantity
{
if (counter > 9)
return;
[m_label setText:[NSString stringWithFormat:@"%d",++counter]];
}
-(IBAction) minusQuantity
{
if (counter < 1)
return;
[m_label setText:[NSString stringWithFormat:@"%d",--counter]];
}
try int counter =。 1 – Shubhank
ニットピッキング;あなたのタイトルを書き直そうとする - カウンターはカウンターと同じではない(あなたのタイトルが示唆する)。 – Jake