objective-c - 关于iOS的文件系统
给我你的怀抱
给我你的怀抱 2017-05-02 09:31:01
0
0
486

我自己往xcode添加了一个sql文件,添加在类似下面Pods/Frameworks/的目录中,但是代码执行的时候貌似找不到我自己加的文件

- (instancetype)initWithDatabaseFilename:(NSString *)dbFilename {
    self = [super init];
    if (self) {
        self.databaseFilename = dbFilename;
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *documentsDirectory = [paths objectAtIndex:0];
        self.databasePath = [documentsDirectory stringByAppendingPathComponent:self.databaseFilename];
        
        [self copyDatabaseIntoDocumentsDirectory];
    }
    return self;
}

- (void)copyDatabaseIntoDocumentsDirectory {
    if (![[NSFileManager defaultManager] fileExistsAtPath:_databasePath]) {
        NSString *sourcePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:_databaseFilename];
        NSError *error;
        [[NSFileManager defaultManager] copyItemAtPath:sourcePath toPath:_databasePath error:&error];
        if (error != nil) {
            NSLog(@"error: %@", [error localizedDescription]);
        }
    }
}
给我你的怀抱
给我你的怀抱

全員に返信(0)
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!