swift-字符串的循环遍历

swift和oc的细节上有很大不同,总体感觉上,swift要好用多了

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        
        //创建NewClass类  ****不需要创建.h和.m文件
        //行尾不需要分号;有也可以
        class NewClass {
            //get方法
            class var newvalue:String{
                return "hello"
            }
        }
        print(NewClass.newvalue)
        //inbex不需要数据类型来描述
        for index in NewClass.newvalue.characters{
            print(index)
        }
}

  • 打印结果
swift-字符串的循环遍历_第1张图片
A58DA0DB-65B9-447E-B5CF-FA14D454F07F.png

你可能感兴趣的:(swift-字符串的循环遍历)