2016-10-03 25 views
-1

でそれを解析します:は、どのように私は、JSONファイルを作成し、私は次のコードを持っているスウィフト

enum Story: String { 
case ReturnTrip 
case TouchDown 
case Homeward 
case Rover 
case Cave 
case Crate 
case Monster 
case Droid 
case Home 
} 

extension Story { 
var artwork: UIImage { 
    return UIImage(named: self.rawValue)! 
} 

var text: String { 
    switch self { 
    case .ReturnTrip: 
     return "On your return trip from studying Saturn's rings, you hear a distress signal that seems to be coming from the surface of Mars. It's strange because there hasn't been a colony there in years. \"Help me, you're my only hope.\"" 
    case .TouchDown: 
     return "You deftly land your ship near where the distress signal originated. You didn't notice anything strange on your fly-by, behind you is an abandoned rover from the early 21st century and a small crate." 
    case .Homeward: 
     return "You continue your course to Earth. Two days later, you receive a transmission from HQ saing that they have detected some sort of anomaly on the surface of Mars near an abandoned rover. They ask you to investigate, but ultimately the decision is yours because your mission has already run much longer than planned and supplies are low." 
    case .Rover: 
     return "The rover is covered in dust and most of the solar panels are broken. But you are quite surprised to see the on-board system booted up and running. In fact, there is a message on the screen. \"Come to 28.2342, -81.08273\". These coordinates aren't far but you don't know if your oxygen will last there and back." 
    case .Cave: 
     return "Your EVA suit is equipped with a headlamp which you use to navigate to a cave. After searching for a while your oxygen levels are starting to get pretty low. You know you should go refill your tank, but there's a faint light up ahead." 
    case .Crate: 
     return "Unlike everything else around you the crate seems new and...alien. As you examine the create you notice something glinting on the ground beside it. Aha, a key! It must be for the crate..." 
    case .Monster: 
     return "You pick up the key and try to unlock the crate, but the key breaks off in the keyhole.You scream out in frustration! Your scream alerts a creature that captures you and takes you away..." 
    case .Droid: 
     return "After a long walk slightly uphill, you end up at the top of a small crater. You look around and are overjoyed to see your robot friend, Droid-S1124. It had been lost on a previous mission to Mars. You take it back to your ship and fly back to Earth." 
    case .Home: 
     return "You arrive home on Earth. While your mission was a success, you forever wonder what was sending that signal. Perhaps a future mission will be able to investigate." 
    } 
    } 
} 

switch文の文字列をJSONファイルにする必要があります。コードは同じように動作するはずです。私はそれを行う方法を知らない私は少し助けを得ることができますか?

+0

https://developer.apple.com/swift/blog/?id=37を参照してください –

答えて

0

JSONファイルタイプではありませんが、フォーマットのデータへの手段:限りJSONにあなたのテキストを変換し、バックなど https://simple.wikipedia.org/wiki/JSON

、あなたはSwiftyJSONライブラリを使用することを検討するべきである: https://github.com/SwiftyJSON/SwiftyJSON

ますテキストをJSONオブジェクトに変換する方法の例を見たい場合は、さらにhereを読むことができます。

+0

どうすればそれを私に詳細に説明できますか? EDIT1:私が入れなければならないコードを書くことができますか?jsonを作成する必要がありますか? –

+0

最も簡単な方法は[cocoapods](https://cocoapods.org/)を入手することです。 [こちら](https://www.raywenderlich.com/97014/use-cocoapods-with-swift)は、ココアポッドの使用に関するチュートリアルです。 なぜあなたのデータはJSONとして必要ですか? – TWOF

+0

学校宿題..私はそれをする必要があるコードを私に与えることができます私は何をしなければならないのか分かりません –