7.17

作者: zhujian6 | 来源:发表于2016-07-17 20:40 被阅读0次

    创建一个ios应用->Single View Application->填写项目名称和选择语言

    let redView = UIView()
    
    redView.frame = CGRectMake(100, 100, 100, 100)
    
    redView.backgroundColor = UIColor.redColor()
    
    Self.View.addSubview(redView)
    

    super.viewDidLoad() //内容添加在之后

    快捷键

    Shfit+Command+h

    Shift+Command+h+h

    Shift+方向键

    Command+[

    Command+]

    if else条件判断语句

    switch-case分支语句(语句为空时使用break,使用fallthrough才能执行下一个case)
    

    while循环语句

    for循环语句

    enum{} 枚举

    repeat while 至少重复一次

    for循环-遍历数组【for i in 数组名】
    
    for循环-遍历字典【for pair in dict】
    
                  【for (key, value) in dict】
    
    

    使用_ 下划线占位

    相关文章

      网友评论

          本文标题:7.17

          本文链接:https://www.haomeiwen.com/subject/uthpjttx.html