プロセスをロードするためのカウントダウンを表示したいと思います。また、をARC
に変換するためint
に使用することは許可されていないことを理解していNSString
ます。count
内に自分を表示するにはどうすればよいNSString
ですか?
static int count = 0;
count++;
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:(5.0)
target:self
selector:@selector(uploadData)
userInfo:nil
repeats:NO];
if (count <= 5)
{
ilabel.text = @"Please be patient...";
NSString *counter = count;
counterLabel.text = counter;
}