0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Swiftで文字列をファイルに保存する方法

Last updated at Posted at 2023-07-07

はじめに

そこで、Swift でファイルに文字列を書き込む方法を知りたいと考えています。 Apple が Foundation フレームワークで簡単な API を提供しているため、Swift で文字列を記述するのは簡単です。 あれば。

あまり話さずに。 このコードをコピーして貼り付けて、動作を確認できます

import Foundation

print("書き込み開始")
let content = "私の名前はMozzlogです"
do {
    try content.write(toFile: "file.txt", atomically: true, encoding:.utf8)
    print("書き込み終了")
} catch {
    print("エラー: \\(error)")
}

以上です。 String をファイルに書き込むには、その write メソッドを呼び出すだけです。

ああ、スナップ! エラーが発生しました!

まあ、完璧なチュートリアルはありません。 間違いを見つけますか? クラッシュしますか?

おそらくチュートリアルも廃止されています。 その場合は以下にコメントしてください。 できるだけ早く更新させてください。 どうもありがとうございます!

次は何ですか?

このクイック チュートリアルの記事全文は、https://www.mozzlog.com/blog/how-to-write-the-content-of-string-to-a-file-in-swift で読むことができます。

https://www.mozzlog.com/blog で、モバイル、ウェブ、バックエンドについて説明した別の記事を読むこともできます。

片言の日本語?

私は日本語を勉強しています。 間違いがあれば修正してください。🙌

0
1
0

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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?