0

変数を使用してヒットするたびに、UIButton の TITLE を更新したいと考えています。

4

1 に答える 1

1

iPhoneタップカウンター

anotherLabel は UIButton の名前になります

static int count;
count++;
NSString *countString = [NSString stringWithFormat:@"%d", count];
[anotherLabel setText: countString];
于 2013-02-13T02:25:55.153 に答える