01 2016 档案
摘要:10//// ViewController.swift// Segues Example//// Created by ZC on 16/1/10.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewCon...
阅读全文
摘要:9//// ViewController.swift// Permanent Storage//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewCo...
阅读全文
摘要:8//// ViewController.swift// Times Tables//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewControl...
阅读全文
摘要:7//// ViewController.swift// Table Views//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewControll...
阅读全文
摘要:6//// ViewController.swift// StopWatch//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewController...
阅读全文
摘要:5//// ViewController.swift// Navigation Bar//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewContr...
阅读全文
摘要:4//// ViewController.swift// Is Prime//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewController:...
阅读全文
摘要:3//// ViewController.swift// Guess Fingers//// Created by ZC on 16/1/8.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewContro...
阅读全文
摘要:2//// ViewController.swift// Cat Years//// Created by ZC on 16/1/6.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewController...
阅读全文
摘要:这个App是用来读取Official Google Blog的内容,然后显示出来。用了新建工程时用了 Master-Detail Application 这个模板。用了Core Data用来存储内容,不过每次启动App还是会删除内容,然后重新下载最新的20条。所以如果没有网络的时候打开不显示内容。在...
阅读全文
摘要:JSON很通用的处理数据的工具,各个语言都可以使用。这个App就是把一个网上的用JSON格式保存的数据拿下来,然后保存到字典中,显示出来,用iOS自己的方法。一定要记得写最后的那个 task.resume() ,很多问题就出在这里。可以每次先把它写上!//// ViewController.swi...
阅读全文
摘要:一个App,从网上下载一张图片(给出图片地址),重新命名,然后保存到手机中,再从手机中取出显示在屏幕上。难度不大,就是找图片很蛋疼,百度搜索出来的过一会儿会失效,Google搜索出来的有些需要FQ,崩溃了。还有一个是,Xcode由于可以自动补全,而某些方法名字很像,甚至三个单词以上组成的时候,只有中...
阅读全文
摘要:今天开始学习Core Data,类似于数据库,可以永久保存数据。不过当把App从iPhone删掉之后就没有了。可以用来保存App的运行数据。参考链接:iOS Swift教程 Core Data 概述Part1://// ViewController.swift// Core Data Demo/...
阅读全文
摘要:学iOS开发与学Swift是两件事情,Swift只是一种语言,它有官方手册,里面包含了全部的语法。对其他任何一门语言很熟悉的人,学习Swift可能只需要几天的时间。而这之后,学习iOS开发才是难点,有且不限于框架等大量其它的东西需要学习。所以是循序渐进的。Swift是强限制类型的语言,学习起来很简单...
阅读全文
摘要:查看Swift版本$ xcrun swift -version查看Xcode位置$ xcrun --find swift参考链接:http://stackoverflow.com/questions/30790188/how-do-i-see-which-version-of-swift-im-us...
阅读全文