{"id":547,"date":"2024-10-07T08:18:40","date_gmt":"2024-10-07T08:18:40","guid":{"rendered":"https:\/\/xcode15.shimayugu.jp\/?p=547"},"modified":"2024-12-29T07:22:56","modified_gmt":"2024-12-28T22:22:56","slug":"%e6%96%b0swift%e3%81%a7%e8%a1%8c%e3%81%93%e3%81%86%e7%ac%ac%ef%bc%95%ef%bc%99%e5%9b%9e%e3%80%8c%e3%83%88%e3%83%a9%e3%83%b3%e3%83%97%ef%bc%91%e8%a7%a3%e8%aa%ac%e3%80%8d%e3%80%80%e7%94%b0","status":"publish","type":"post","link":"https:\/\/xcode15.shimayugu.jp\/?p=547","title":{"rendered":"\u65b0Swift\u3067\u884c\u3053\u3046\u2026\u7b2c\uff15\uff19\u56de\u300c\u30c8\u30e9\u30f3\u30d7\uff11\u89e3\u8aac\u300d\u3000\u7530\u90e8\u4e95\u4fdd"},"content":{"rendered":"\n<p><a href=\"https:\/\/shimayugu.sakura.ne.jp\/?p=2473\">\u76ee\u6b21<\/a>\u3000<a href=\"https:\/\/xcode15.shimayugu.jp\/?p=91\">\u901a\u5e38\u7248<\/a><\/p>\n\n\n\n<p>\u3000\u30c8\u30e9\u30f3\u30d7\uff11\u306e\u89e3\u8aac\u3067\u3059\u3002<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-swift\" data-lang=\"Swift\" data-show-lang=\"1\"><code>\/\/\n\/\/  ViewController.swift\n\/\/  Card\n\/\/\n\/\/  Created by \u4fdd Tabei on 2024\/09\/25.\n\/\/\n\nimport UIKit\n\nclass ViewController: UIViewController {\n    \/\/\/\u30de\u30fc\u30af\u8868\u793a\u7528\u30e9\u30d9\u30eb\n    @IBOutlet weak var lblMark: UILabel!\n    \/\/\/\u30ca\u30f3\u30d0\u30fc\u8868\u793a\u7528\u30e9\u30d9\u30eb\n    @IBOutlet weak var lblNumber: UILabel!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        \/\/ Do any additional setup after loading the view.\n    }\n\n    \/\/\/\u30dc\u30bf\u30f3\u62bc\u4e0b\u6642\u51e6\u7406\n    @IBAction func btnGoTouch(_ sender: Any) {\n        \/\/\u30de\u30fc\u30af\u4e71\u6570\u767a\u751f\uff08\uff10\u301c\uff13\uff09\n        let mark = Int.random(in: 0 ..&lt; 4)\n        \/\/\u30ca\u30f3\u30d0\u30fc\u4e71\u6570\u767a\u751f\uff08\uff10\u301c\uff11\uff12\uff09\n        let number = Int.random(in: 0 ..&lt; 13)\n        \/\/\u30de\u30fc\u30af\u306b\u3088\u308a\u632f\u308a\u5206\u3051\n        switch mark {\n        case 0:\n            lblMark.text = &quot;\u2663\ufe0f&quot;\n        case 1:\n            lblMark.text = &quot;\u2666\ufe0f&quot;\n        case 2:\n            lblMark.text = &quot;\u2665\ufe0f&quot;\n        case 3:\n            lblMark.text = &quot;\u2660\ufe0f&quot;\n        default:\n            lblMark.text = &quot;&quot;\n        }\n        \/\/\u30ca\u30f3\u30d0\u30fc\u306b\u3088\u308a\u632f\u308a\u5206\u3051\n        switch number {\n        case 0:\n            lblNumber.text = &quot;A&quot;\n        case 1:\n            lblNumber.text = &quot;2&quot;\n        case 2:\n            lblNumber.text = &quot;3&quot;\n        case 3:\n            lblNumber.text = &quot;4&quot;\n        case 4:\n            lblNumber.text = &quot;5&quot;\n        case 5:\n            lblNumber.text = &quot;6&quot;\n        case 6:\n            lblNumber.text = &quot;7&quot;\n        case 7:\n            lblNumber.text = &quot;8&quot;\n        case 8:\n            lblNumber.text = &quot;9&quot;\n        case 9:\n            lblNumber.text = &quot;T&quot;\n        case 10:\n            lblNumber.text = &quot;J&quot;\n        case 11:\n            lblNumber.text = &quot;Q&quot;\n        case 12:\n            lblNumber.text = &quot;K&quot;\n        default:\n            lblNumber.text = &quot;&quot;\n        }\n    }\n    \n}<\/code><\/pre><\/div>\n\n\n\n<p>\u3000\uff12\uff14\u884c\u76ee\u3067\u30de\u30fc\u30af\u306e\u4e71\u6570\u767a\u751f\u3092\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u3053\u3067\uff11\u301c\uff14\u3067\u306f\u306a\u304f\u3066\u3001\uff10\u301c\uff13\u3068\u3057\u3066\u3044\u308b\u6240\u304c\u4e0d\u601d\u8b70\u304b\u3082\u77e5\u308c\u307e\u305b\u3093\u3002\u3053\u308c\u306f\u3001\u3053\u306e\u56de\u306e\u5f8c\u3067\u8aac\u660e\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3000\uff12\uff16\u884c\u76ee\u3067\u30ca\u30f3\u30d0\u30fc\u306e\u4e71\u6570\u3092\u767a\u751f\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u3053\u3082\uff11\u301c\uff11\uff13\u3067\u306f\u306a\u304f\u3066\u3001\uff10\u301c\uff11\uff12\u3068\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3000\u3042\u3068\u306f\u3001\u30de\u30fc\u30af\u3068\u30ca\u30f3\u30d0\u30fc\u306b\u3088\u3063\u3066\u8868\u793a\u3059\u308b\u3082\u306e\u3092\u5909\u3048\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3000\u30d0\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\uff12\u3067\u3059\u3002\u30e9\u30d9\u30eb\u3092\u4e00\u3064\u306b\u3057\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-swift\" data-lang=\"Swift\" data-show-lang=\"1\"><code>\/\/\n\/\/  ViewController.swift\n\/\/  Card\n\/\/\n\/\/  Created by \u4fdd Tabei on 2024\/09\/25.\n\/\/\n\nimport UIKit\n\nclass ViewController: UIViewController {\n    \/\/\/\u30ab\u30fc\u30c9\u8868\u793a\u7528\u30e9\u30d9\u30eb\n    @IBOutlet weak var lblCard: UILabel!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        \/\/ Do any additional setup after loading the view.\n    }\n\n    \/\/\/\u30dc\u30bf\u30f3\u62bc\u4e0b\u6642\u51e6\u7406\n    @IBAction func btnGoTouch(_ sender: Any) {\n        \/\/\u30de\u30fc\u30af\u4e71\u6570\u767a\u751f\uff08\uff10\u301c\uff13\uff09\n        let mark = Int.random(in: 0 ..&lt; 4)\n        \/\/\u30ca\u30f3\u30d0\u30fc\u4e71\u6570\u767a\u751f\uff08\uff10\u301c\uff11\uff12\uff09\n        let number = Int.random(in: 0 ..&lt; 13)\n        \n        \/\/\u30de\u30fc\u30af\u4fdd\u6301\u5909\u6570\n        var strMark:String\n        \/\/\u30ca\u30f3\u30d0\u30fc\u4fdd\u6301\u5909\u6570\n        var strNumber:String\n        \n        \/\/\u30de\u30fc\u30af\u306b\u3088\u308a\u632f\u308a\u5206\u3051\n        switch mark {\n        case 0:\n            strMark = &quot;\u2663\ufe0f&quot;\n        case 1:\n            strMark = &quot;\u2666\ufe0f&quot;\n        case 2:\n            strMark = &quot;\u2665\ufe0f&quot;\n        case 3:\n            strMark = &quot;\u2660\ufe0f&quot;\n        default:\n            strMark = &quot;&quot;\n        }\n        \n        \/\/\u30ca\u30f3\u30d0\u30fc\u306b\u3088\u308a\u632f\u308a\u5206\u3051\n        switch number {\n        case 0:\n            strNumber = &quot;A&quot;\n        case 1:\n            strNumber = &quot;2&quot;\n        case 2:\n            strNumber = &quot;3&quot;\n        case 3:\n            strNumber = &quot;4&quot;\n        case 4:\n            strNumber = &quot;5&quot;\n        case 5:\n            strNumber = &quot;6&quot;\n        case 6:\n            strNumber = &quot;7&quot;\n        case 7:\n            strNumber = &quot;8&quot;\n        case 8:\n            strNumber = &quot;9&quot;\n        case 9:\n            strNumber = &quot;T&quot;\n        case 10:\n            strNumber = &quot;J&quot;\n        case 11:\n            strNumber = &quot;Q&quot;\n        case 12:\n            strNumber = &quot;K&quot;\n        default:\n            strNumber = &quot;&quot;\n        }\n        \/\/\u30ab\u30fc\u30c9\u8868\u793a\u7528\u30e9\u30d9\u30eb\u306b\u30de\u30fc\u30af\u3068\u30ca\u30f3\u30d0\u30fc\u3092\u8868\u793a\n        lblCard.text = strMark + strNumber\n    }\n    \n}<\/code><\/pre><\/div>\n\n\n\n<p>\u3000\u30d0\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\uff13\u3067\u3059\u3002\u30e9\u30f3\u30c0\u30e0\u306b\u51fa\u3059\u6570\u3092\u30de\u30fc\u30af\u3068\u30ca\u30f3\u30d0\u30fc\u3067\u5206\u3051\u306a\u304f\u3057\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-swift\" data-lang=\"Swift\" data-line=\"22,30,44\" data-show-lang=\"1\"><code>\/\/\n\/\/  ViewController.swift\n\/\/  Card\n\/\/\n\/\/  Created by \u4fdd Tabei on 2024\/09\/25.\n\/\/\n\nimport UIKit\n\nclass ViewController: UIViewController {\n    \/\/\/\u30ab\u30fc\u30c9\u8868\u793a\u7528\u30e9\u30d9\u30eb\n    @IBOutlet weak var lblCard: UILabel!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        \/\/ Do any additional setup after loading the view.\n    }\n\n    \/\/\/\u30dc\u30bf\u30f3\u62bc\u4e0b\u6642\u51e6\u7406\n    @IBAction func btnGoTouch(_ sender: Any) {\n        \/\/\u30ab\u30fc\u30c9\u4e71\u6570\u767a\u751f\uff08\uff10\u301c\uff15\uff11\uff09\n        let card = Int.random(in: 0 ..&lt; 52)\n        \n        \/\/\u30de\u30fc\u30af\u4fdd\u6301\u5909\u6570\n        var strMark:String\n        \/\/\u30ca\u30f3\u30d0\u30fc\u4fdd\u6301\u5909\u6570\n        var strNumber:String\n        \n        \/\/\u30de\u30fc\u30af\u306b\u3088\u308a\u632f\u308a\u5206\u3051\n        switch card \/ 13 {\n        case 0:\n            strMark = &quot;\u2663\ufe0f&quot;\n        case 1:\n            strMark = &quot;\u2666\ufe0f&quot;\n        case 2:\n            strMark = &quot;\u2665\ufe0f&quot;\n        case 3:\n            strMark = &quot;\u2660\ufe0f&quot;\n        default:\n            strMark = &quot;&quot;\n        }\n        \n        \/\/\u30ca\u30f3\u30d0\u30fc\u306b\u3088\u308a\u632f\u308a\u5206\u3051\n        switch card % 13 {\n        case 0:\n            strNumber = &quot;A&quot;\n        case 1:\n            strNumber = &quot;2&quot;\n        case 2:\n            strNumber = &quot;3&quot;\n        case 3:\n            strNumber = &quot;4&quot;\n        case 4:\n            strNumber = &quot;5&quot;\n        case 5:\n            strNumber = &quot;6&quot;\n        case 6:\n            strNumber = &quot;7&quot;\n        case 7:\n            strNumber = &quot;8&quot;\n        case 8:\n            strNumber = &quot;9&quot;\n        case 9:\n            strNumber = &quot;T&quot;\n        case 10:\n            strNumber = &quot;J&quot;\n        case 11:\n            strNumber = &quot;Q&quot;\n        case 12:\n            strNumber = &quot;K&quot;\n        default:\n            strNumber = &quot;&quot;\n        }\n        \/\/\u30ab\u30fc\u30c9\u8868\u793a\u7528\u30e9\u30d9\u30eb\u306b\u30de\u30fc\u30af\u3068\u30ca\u30f3\u30d0\u30fc\u3092\u8868\u793a\n        lblCard.text = strMark + strNumber\n    }\n    \n}<\/code><\/pre><\/div>\n\n\n\n<p>\u3000\u518d\u63b2\u306b\u306a\u308a\u307e\u3059\u304c\u3001\u30c8\u30e9\u30f3\u30d7\u306e\u5834\u5408\u3001\u4e00\u5ea6\u914d\u3089\u308c\u305f\u30ab\u30fc\u30c9\u306f\u6368\u3066\u3089\u308c\u305f\u30ab\u30fc\u30c9\u3092\u5fa9\u6d3b\u3055\u305b\u305f\u5834\u5408\u4ee5\u5916\u306f\u3082\u3046\u51fa\u3066\u6765\u307e\u305b\u3093\u3002\u305d\u3053\u3067\u30de\u30fc\u30af\u3068\u30ca\u30f3\u30d0\u30fc\u3092\u5206\u3051\u3066\u3044\u308b\u3068\u3001\u4f8b\u3048\u3070\u30cf\u30fc\u30c8\u2764\ufe0f\u306f\u3082\u3046\u51fa\u5c3d\u304f\u3057\u305f\u306e\u306b\u30de\u30fc\u30af\u306e\u30cf\u30fc\u30c8\u2764\ufe0f\u304c\u51fa\u3066\u3057\u307e\u3046\u3068\u3044\u3046\u4e8b\u304c\u8003\u3048\u3089\u308c\u307e\u3059\u3002\u30e9\u30f3\u30c0\u30e0\u306b\u51fa\u3059\u6570\u306f\u4e00\u3064\u306e\u65b9\u304c\u826f\u3044\u3068\u601d\u308f\u308c\u307e\u3059\u3002\u7279\u306b\u30b8\u30e7\u30fc\u30ab\u30fc\u306e\u4e8b\u3092\u8003\u3048\u308b\u3068\u4e00\u3064\u306e\u65b9\u304c\u826f\u3044\u3068\u601d\u308f\u308c\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3000\u4e00\u3064\u306b\u3057\u3066\u3001\uff15\uff12\u679a\u3067\u3001\uff10\u301c\uff11\uff12\u304c\u2663\ufe0f\u3001\uff11\uff13\u301c\uff12\uff15\u304c\u2666\ufe0f\u3001\uff12\uff16\u301c\uff13\uff18\u304c\u2665\ufe0f\u3001\uff13\uff19\u301c\uff15\uff11\u304c\u2660\ufe0f\u3068\u306a\u308b\u3068\u826f\u3044\u3067\u3059\u3002\u3053\u308c\u306f card \u306b\uff10\u301c\uff15\uff11\u306e\u4e71\u6570\u3092\u767a\u751f\u3055\u305b\u3066\u3001card \/ 13 \u3068\u5546\u3092\u8a08\u7b97\u3059\u308b\u3068\u3001\uff10\u306b\u306a\u308b\u306e\u304c\u2663\ufe0f\u3001\uff11\u306b\u306a\u308b\u306e\u304c\u2666\ufe0f\u3001\uff12\u306b\u306a\u308b\u306e\u304c\u2665\ufe0f\u3001\uff13\u306b\u306a\u308b\u306e\u304c\u2660\ufe0f\u3068\u306a\u308a\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3000\u305d\u3057\u3066 card % 13 \u3068\u5270\u4f59\u3092\u8a08\u7b97\u3059\u308b\u3068\u3001\uff10\u304b\u3089\uff11\uff12\u304c\u5f97\u3089\u308c\u307e\u3059\u3002\uff10\u304b\u3089\u9806\u306bA\u3001\uff12\u3001\uff13&#8230;K \u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u307e\u3059\u3002\u3053\u306e\u69d8\u306b\u3001\uff11\u301c\uff14\u3001\uff11\u301c\uff11\uff13\u3068\u3057\u306a\u3044\u3067\u3001\uff10\u301c\uff13\u3001\uff10\u301c\uff11\uff12\u3068\u3057\u3066\u304a\u304f\u3068\u3001\u30b7\u30f3\u30d7\u30eb\u306b\u306a\u308a\u307e\u3059\u3002\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u3067\u306f\u3001\uff11\u59cb\u307e\u308a\u3088\u308a\u3001\uff10\u59cb\u307e\u308a\u3068\u3057\u305f\u65b9\u304c\u826f\u3044\u5834\u9762\u304c\u7d50\u69cb\u3042\u308a\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3000\u30d0\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3\uff14\u3067\u3059\u3002\u914d\u5217\u3068\u3044\u3046\u4ed5\u7d44\u307f\u3092\u4f7f\u3063\u3066\u307f\u307e\u3057\u305f\u3002\u30b7\u30f3\u30d7\u30eb\u306b\u306a\u308a\u307e\u3057\u305f\u3002 <\/p>\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-swift\" data-lang=\"Swift\" data-show-lang=\"1\"><code>\/\/\n\/\/  ViewController.swift\n\/\/  Card\n\/\/\n\/\/  Created by \u4fdd Tabei on 2024\/09\/25.\n\/\/\n\nimport UIKit\n\nclass ViewController: UIViewController {\n    \/\/\/\u30ab\u30fc\u30c9\u8868\u793a\u7528\u30e9\u30d9\u30eb\n    @IBOutlet weak var lblCard: UILabel!\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        \/\/ Do any additional setup after loading the view.\n    }\n\n    \/\/\/\u30de\u30fc\u30af\u4fdd\u6301\u914d\u5217\n    let mark: [String] = [&quot;\u2663\ufe0f&quot;,&quot;\u2666\ufe0f&quot;,&quot;\u2764\ufe0f&quot;,&quot;\u2660\ufe0f&quot;]\n    \/\/\/\u30ca\u30f3\u30d0\u30fc\u4fdd\u6301\u914d\u5217\n    let number: [String] = [&quot;A&quot;,&quot;2&quot;,&quot;3&quot;,&quot;4&quot;,&quot;5&quot;,&quot;6&quot;,&quot;7&quot;,&quot;8&quot;,&quot;9&quot;,&quot;T&quot;,&quot;J&quot;,&quot;Q&quot;,&quot;K&quot;]\n\n    \/\/\/\u30dc\u30bf\u30f3\u62bc\u4e0b\u6642\u51e6\u7406\n    @IBAction func btnGoTouch(_ sender: Any) {\n        \/\/\u30ab\u30fc\u30c9\u4e71\u6570\u767a\u751f\uff08\uff10\u301c\uff15\uff11\uff09\n        let card = Int.random(in: 0 ..&lt; 52)\n        \/\/\u30ab\u30fc\u30c9\u8868\u793a\u7528\u30e9\u30d9\u30eb\u306b\u30de\u30fc\u30af\u3068\u30ca\u30f3\u30d0\u30fc\u3092\u8868\u793a\n        lblCard.text = mark[card \/ 13] + number[card % 13]\n    }\n    \n}<\/code><\/pre><\/div>\n\n\n\n<p>\u3000\uff12\uff10\u884c\u76ee\u3067\u30de\u30fc\u30af\u306e\u7d75\u67c4\u3092\u4fdd\u6301\u3059\u308b\u914d\u5217\u3092\u5b9a\u7fa9\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u3046\u3059\u308b\u3068\u3001mark[0] \u3068\u3059\u308b\u3068&#8221;\u2663\ufe0f&#8221;\u306e\u6587\u5b57\u5217\u304c\u3001mark[1] \u3068\u3059\u308b\u3068&#8221;\u2666\ufe0f&#8221;\u306e\u6587\u5b57\u5217\u304c\u5f97\u3089\u308c\u307e\u3059\u3002\u540c\u69d8\u306b\uff12\uff12\u884c\u76ee\u3067\u30ca\u30f3\u30d0\u30fc\u306e\u6587\u5b57\u5217\u3092\u4fdd\u6301\u3059\u308b\u914d\u5217\u3092\u5b9a\u7fa9\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u3046\u3059\u308b\u3068\u3001number[0] \u3068\u3059\u308b\u3068&#8221;A&#8221;\u306e\u6587\u5b57\u5217\u304c\u3001number[1] \u3068\u3059\u308b\u3068&#8221;2&#8243;\u306e\u6587\u5b57\u5217\u304c\u3001number[2] \u3068\u3059\u308b\u3068&#8221;3&#8243;\u306e\u6587\u5b57\u5217\u304c\u5f97\u3089\u308c\u307e\u3059\u3002\u3053\u3046\u3044\u3063\u305f\u3082\u306e\u3092\u914d\u5217\u3068\u8a00\u3044\u307e\u3059\u304c\u3001\u914d\u5217\u3092\u4f7f\u3046\u4e8b\u3067\u30d7\u30ed\u30b0\u30e9\u30e0\u304c\u30b7\u30f3\u30d7\u30eb\u306b\u306a\u308b\u4e8b\u304c\u826f\u304f\u3042\u308a\u307e\u3059\u3002<\/p>\n\n\n\n<p><a href=\"https:\/\/shimayugu.sakura.ne.jp\/?p=2473\">\u76ee\u6b21<\/a>\u3000<a href=\"https:\/\/xcode15.shimayugu.jp\/?p=91\">\u901a\u5e38\u7248<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u76ee\u6b21\u3000\u901a\u5e38\u7248 \u3000\u30c8\u30e9\u30f3\u30d7\uff11\u306e\u89e3\u8aac\u3067\u3059\u3002 \u3000\uff12\uff14\u884c\u76ee\u3067\u30de\u30fc\u30af\u306e\u4e71\u6570\u767a\u751f\u3092\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u3053\u3067\uff11\u301c\uff14\u3067\u306f\u306a\u304f\u3066\u3001\uff10\u301c\uff13\u3068\u3057\u3066\u3044\u308b\u6240\u304c\u4e0d\u601d\u8b70\u304b\u3082\u77e5\u308c\u307e\u305b\u3093\u3002\u3053\u308c\u306f\u3001\u3053\u306e\u56de\u306e\u5f8c\u3067\u8aac\u660e\u3057\u307e\u3059\u3002 \u3000\uff12\uff16\u884c\u76ee\u3067\u30ca\u30f3\u30d0\u30fc\u306e\u4e71\u6570\u3092\u767a\u751f\u3057\u3066\u3044 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-547","post","type-post","status-publish","format-standard","hentry","category-swift"],"_links":{"self":[{"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/posts\/547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=547"}],"version-history":[{"count":11,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/posts\/547\/revisions"}],"predecessor-version":[{"id":1055,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=\/wp\/v2\/posts\/547\/revisions\/1055"}],"wp:attachment":[{"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xcode15.shimayugu.jp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}