3
iPhoneアプリにユーザー固有のデータを保存したいと思います。私はSQLiteのサンプルを見ていた、そしてこれに似たような使用している:私は何を知りたいのですが、ある私のアプリのためのユニークな「writableDBPath」であるNSDocumentDirectoryは特定のアプリケーションで一意ですか?
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask ,YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *writableDBPath = [documentsDirectory stringByAppendingPathComponent:dbName];
を?私の "dbName"が別のアプリケーションで使用されている同じ名前の別のファイルと衝突する危険性はありますか?