LoginSignup
1
1

More than 5 years have passed since last update.

スレッドセーフに1回だけ実行させる

Last updated at Posted at 2014-02-08

シングルトンとかで使う感じかな。

+ (HKSQLite *) sharedSQLite
{
    static HKSQLite *_SQLite;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        _SQLite = [[HKSQLite alloc] initWithPath:self.path];
        [_SQLite setup];
    });
    return _SQLite;
}
1
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1