Mac中语言的设定: no such module Cocoa:在试一下swift的教程学习的代码的时候 发现import Cocoa导入这个包的时候一直报错 因为我新建的是playground的工程,所以应该导入UIkit包这样就可以解决这个错误 Cocoa这个包是在IOS开发中使用的包 可选类型 ...
分类:
编程语言 时间:
2016-12-11 15:01:50
阅读次数:
185
A Neural Network Playground Understanding neural networks with TensorFlow Playground 机器之心翻译 ...
分类:
其他好文 时间:
2016-12-07 13:49:29
阅读次数:
390
1. 安装weex-toolkit 装完之后就可以使用weex命令了。输入weex命令可以看到: --qr 即是显示本地地址文件的二维码,安装playground后既可以扫描二维码看到we文件的页面。-h 是热更新 weex init即是初始化一个项目 ...
分类:
其他好文 时间:
2016-12-01 03:21:23
阅读次数:
244
//: Playground - noun: a place where people can play import Cocoa var str = "Hello, playground" 定义Class类 测试类 swift代码: 运行结果: /************************* ...
分类:
编程语言 时间:
2016-11-22 14:59:33
阅读次数:
209
//: Playground - noun: a place where people can play import Cocoa var str = "Hello, playground" //这里先提及下, //Swift中的属性的定义 //属性名首字母只能是字母,下划线 //首字母后也只能是数 ...
分类:
编程语言 时间:
2016-11-20 13:53:33
阅读次数:
203
//: Playground - noun: a place where people can play import Cocoa //基本的函数 //*******************************************无参无返回值的函数 func first(){ print(" ...
分类:
编程语言 时间:
2016-11-20 13:34:57
阅读次数:
180
//: Playground - noun: a place where people can play import UIKit var str = "Hello, playground" let individualScores = [75, 43, 103, 87, 12]; var team ...
分类:
编程语言 时间:
2016-11-16 02:55:49
阅读次数:
277
//: Playground - noun: a place where people can play import UIKit var str = "Hello, playground" func greet(name: String, day: String) ->String { retur ...
分类:
编程语言 时间:
2016-11-16 02:41:34
阅读次数:
185
//: Playground - noun: a place where people can play import UIKit var str = "Hello, playground" //var 声明变量 很像JavaScript var myVariable = 42; myVariabl ...
分类:
编程语言 时间:
2016-11-16 02:22:05
阅读次数:
302
//: Playground - noun: a place where people can play import UIKit var str = "Hello, playground" //容器类 ////1.数组 Array // ////一般形式 //var numbers:[Int] = ...
分类:
编程语言 时间:
2016-11-03 16:18:04
阅读次数:
330