The iOS implementation code is executed only once

  • 2020-05-19 05:59:16
  • OfStack

The iOS implementation code only lets you execute it once


- (void)viewDidLoad {
  [super viewDidLoad];
  // Do any additional setup after loading the view, typically from a nib.
 
  [self performSelector:@selector(wangmumu:) withObject:@"100" afterDelay:1];
}
 
- (void) wangmumu:(NSString *)han{
  static dispatch_once_t hanwanjie;
// Only perform 1 time 
  dispatch_once(&hanwanjie, ^{
    NSLog(@"12345678910");
  });
   
  int niha = [han intValue] - 1;
  if (niha == 10) {
    return;
  }
  [self performSelector:@selector(hanwanjie:) withObject:[NSString stringWithFormat:@"%d",niha] afterDelay:1];
}


Related articles: