随笔分类 -  18+Apps

Here is the project files, the source codes and something else for the course "The Complete iOS 9 Developer Course - Build 18 Apps" on Udemy.com, and the website https://www.udemy.com/the-complete-ios-9-developer-course/ Based on Xcode 7.2 and Swift 2.1.1 2016.1.21
摘要:在学习The complete iOS 9 Developer Course - Build 18 Apps 中的Letture134-Facebook Login,需要整合(integrate)Parse+Facebook在iOS(Xcode)中,也就是用Facebook的账户登录制作的APP(c 阅读全文
posted @ 2016-03-19 20:12 zcdll 阅读(681) 评论(0) 推荐(0) 编辑
摘要:10//// ViewController.swift// Segues Example//// Created by ZC on 16/1/10.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewCon... 阅读全文
posted @ 2016-01-26 17:26 zcdll 阅读(127) 评论(0) 推荐(0) 编辑
摘要:9//// ViewController.swift// Permanent Storage//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewCo... 阅读全文
posted @ 2016-01-26 17:24 zcdll 阅读(157) 评论(0) 推荐(0) 编辑
摘要:8//// ViewController.swift// Times Tables//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewControl... 阅读全文
posted @ 2016-01-26 17:15 zcdll 阅读(142) 评论(0) 推荐(0) 编辑
摘要:7//// ViewController.swift// Table Views//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewControll... 阅读全文
posted @ 2016-01-26 17:14 zcdll 阅读(108) 评论(0) 推荐(0) 编辑
摘要:6//// ViewController.swift// StopWatch//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewController... 阅读全文
posted @ 2016-01-26 17:13 zcdll 阅读(119) 评论(0) 推荐(0) 编辑
摘要:5//// ViewController.swift// Navigation Bar//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewContr... 阅读全文
posted @ 2016-01-26 17:11 zcdll 阅读(137) 评论(0) 推荐(0) 编辑
摘要:4//// ViewController.swift// Is Prime//// Created by ZC on 16/1/9.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewController:... 阅读全文
posted @ 2016-01-26 17:10 zcdll 阅读(123) 评论(0) 推荐(0) 编辑
摘要:3//// ViewController.swift// Guess Fingers//// Created by ZC on 16/1/8.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewContro... 阅读全文
posted @ 2016-01-26 17:07 zcdll 阅读(133) 评论(0) 推荐(0) 编辑
摘要:2//// ViewController.swift// Cat Years//// Created by ZC on 16/1/6.// Copyright © 2016年 ZC. All rights reserved.//import UIKitclass ViewController... 阅读全文
posted @ 2016-01-26 17:06 zcdll 阅读(210) 评论(0) 推荐(0) 编辑
摘要:这个App是用来读取Official Google Blog的内容,然后显示出来。用了新建工程时用了 Master-Detail Application 这个模板。用了Core Data用来存储内容,不过每次启动App还是会删除内容,然后重新下载最新的20条。所以如果没有网络的时候打开不显示内容。在... 阅读全文
posted @ 2016-01-24 12:47 zcdll 阅读(202) 评论(0) 推荐(0) 编辑
摘要:JSON很通用的处理数据的工具,各个语言都可以使用。这个App就是把一个网上的用JSON格式保存的数据拿下来,然后保存到字典中,显示出来,用iOS自己的方法。一定要记得写最后的那个 task.resume() ,很多问题就出在这里。可以每次先把它写上!//// ViewController.swi... 阅读全文
posted @ 2016-01-23 23:29 zcdll 阅读(144) 评论(0) 推荐(0) 编辑
摘要:一个App,从网上下载一张图片(给出图片地址),重新命名,然后保存到手机中,再从手机中取出显示在屏幕上。难度不大,就是找图片很蛋疼,百度搜索出来的过一会儿会失效,Google搜索出来的有些需要FQ,崩溃了。还有一个是,Xcode由于可以自动补全,而某些方法名字很像,甚至三个单词以上组成的时候,只有中... 阅读全文
posted @ 2016-01-23 22:41 zcdll 阅读(156) 评论(0) 推荐(0) 编辑
摘要:今天开始学习Core Data,类似于数据库,可以永久保存数据。不过当把App从iPhone删掉之后就没有了。可以用来保存App的运行数据。参考链接:iOS Swift教程 Core Data 概述Part1://// ViewController.swift// Core Data Demo/... 阅读全文
posted @ 2016-01-23 00:08 zcdll 阅读(129) 评论(0) 推荐(0) 编辑
摘要:学iOS开发与学Swift是两件事情,Swift只是一种语言,它有官方手册,里面包含了全部的语法。对其他任何一门语言很熟悉的人,学习Swift可能只需要几天的时间。而这之后,学习iOS开发才是难点,有且不限于框架等大量其它的东西需要学习。所以是循序渐进的。Swift是强限制类型的语言,学习起来很简单... 阅读全文
posted @ 2016-01-22 16:56 zcdll 阅读(156) 评论(0) 推荐(0) 编辑