for-in文内のメソッド名のちょっとしたこと Swift
JSONからforで情報を取り出すときに教えてもらったこと
for platform in platforms {
let moreDetailPlatformName = platform["name"].stringValue
}
ループの中などはスコープがその中に限られているので、moreDetailPlatformなのはわかりきってるはず。そのため、こういうときはnameとかtimeでも伝わる。
for platform in platforms {
let name = platform["name"].stringValue
}
ただ、このforの中でいくつかの情報を取り扱うのであれば、それらと区別しなければいけないので上のコードの書き方の方がいいかも。
Author And Source
この問題について(for-in文内のメソッド名のちょっとしたこと Swift), 我々は、より多くの情報をここで見つけました https://qiita.com/KnoTrd/items/3dbb1aa7e8c4ab3f8142著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .