“func makeIncrementer() -> (Int -> Int) {
func addOne(number: Int) -> Int {
return 1 + number
}
return addOne
}
var increment = makeIncrementer()
increment(7)”
摘录来自: Apple Inc. “T...
分类:
其他好文 时间:
2014-06-20 13:27:56
阅读次数:
161
Swift 是一种兼顾了编译语言的效率和脚本语言的简洁的一种语言。
让我惊讶的是居然支持汉字作为变量的名称,而且还有模板的支持。
其他总的来讲它本身不具有特别与别人不同的东西,很多东西在其他的语言上已经都有了比较成熟的体现,比如JS中的var, python的dict, list, go的多返回值,看起来像是一个大杂烩,很像当年iphone刚刚面世的时候的场景,它所具有的功能,其他的手机基本上...
分类:
移动开发 时间:
2014-06-20 09:15:07
阅读次数:
331
This is a preliminary document for an API or
technology in development. Apple is supplying this information to help you plan
for the adoption of the t...
分类:
移动开发 时间:
2014-06-13 14:05:54
阅读次数:
462
Apple
新推的Swift已经好几天了。对于向我这样的oc都还没完全琢磨透彻的菜鸟来说……(简直就是福利啊,joke)看了几天的Swift,只是有了基本的印象。总感觉比较换混乱,可能源自与自己没怎么学过脚本语言。索性,边看边记,加深印象。本来部分内容源自Apple的《The
Swift Progr...
分类:
其他好文 时间:
2014-06-13 13:32:10
阅读次数:
438
ios//// movieplayercontroller.h// sgcard////
Created by Apple on 13-9-10.////#import #import "movieplayer.h"#import
"EAGLView.h"@interface MoviePlayer...
分类:
移动开发 时间:
2014-06-11 09:10:16
阅读次数:
320
直接从已安装好的机器上导出私有密钥的,具体方法如下:
Xcode的organizer的IPHONE DEVELOPMENT --->Developer Profile里自带的Export和Import操作
导出私钥成功之后,把私钥Copy到需要安装的机器上,进行私钥导入:按照上图的步骤操作完之后,就...
分类:
移动开发 时间:
2014-06-08 06:41:15
阅读次数:
336
一、制作 U 盘系统启动盘 1、从 App Store 上下载 OS Application。
2、打开 Terminal,设备显示隐藏文件。$ defaults write ~/Library/Preferences/com.apple.finder
AppleShowAllFiles -bo.....
分类:
其他好文 时间:
2014-06-08 06:21:44
阅读次数:
279
本文讲述发布证书的申请,申请真机调试证书请参考:http://my.oschina.net/joanfen/blog/167730首先登陆https://developer.apple.com(99美元账号)选择iOS
Developer program 板块下的Certificates,Ident...
分类:
移动开发 时间:
2014-06-08 02:06:58
阅读次数:
346
Although apply and call can implement same
function. However, there is a litter different between them.Please pay attention
to look at the examples be...
分类:
移动开发 时间:
2014-06-07 21:53:15
阅读次数:
331
2014年06月03日凌晨,Apple刚刚发布了Swift编程语言,本文从其发布的书籍《The Swift Programming Language》中摘录和提取而成。希望对各位的iOS&OSX开发有所帮助。
前言
在这里我认为有必要提一下Brec Victor的Inventing on Principle,Swift编程环境的大部分概念都源自于Brec这个演讲。
接下来进入正题。
Swi...
分类:
移动开发 时间:
2014-06-07 16:21:18
阅读次数:
406