首页 > 系统 > iOS > 正文

iOS实现代码只执行一次

2020-07-26 03:26:56
字体:
来源:转载
供稿:网友

iOS实现代码只让执行一次

- (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;//只执行一次  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];}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表