2016年12月8日

Server Side Swift With Vapor(基础配置&使用DropLet类实现http请求)

摘要: 参考视频(需FQ):https://videos.raywenderlich.com/screencasts/server-side-swift-with-vapor-getting-started 当前最流行的swift服务器框架:Vapor: 需要swift 3.0 installed,xcod 阅读全文

posted @ 2016-12-08 14:40 cocoabanana 阅读(312) 评论(0) 推荐(0) 编辑

2016年6月7日

Stack views

摘要: Stack views provide a way to horizontally or vertically position a series of views. By configuring a few simple properties such as alignment, distribu 阅读全文

posted @ 2016-06-07 17:14 cocoabanana 阅读(210) 评论(0) 推荐(0) 编辑

2016年6月3日

view Interaction

摘要: Any time a user interacts with your user interface, or any time your own code programmatically changes something, a complex sequence of events takes p 阅读全文

posted @ 2016-06-03 11:00 cocoabanana 阅读(194) 评论(0) 推荐(0) 编辑

The View Drawing Cycle

摘要: The UIView class uses an on-demand drawing model for presenting content. When a view first appears on the screen, the system asks it to draw its conte 阅读全文

posted @ 2016-06-03 10:38 cocoabanana 阅读(167) 评论(0) 推荐(0) 编辑

View Architecture Fundamentals

摘要: A view object defines a rectangular region on the screen and handles the drawing and touch events in that region. A view can also act as a parent for 阅读全文

posted @ 2016-06-03 10:19 cocoabanana 阅读(111) 评论(0) 推荐(0) 编辑

2016年6月2日

Displaying Your Views at Runtime

摘要: UIKit automatically loads views from your storyboard file when they are needed. As part of the loading process, UIKit performs the following sequence 阅读全文

posted @ 2016-06-02 22:56 cocoabanana 阅读(125) 评论(0) 推荐(0) 编辑

2016年6月1日

iOS识别唯一用户

摘要: Identifying Unique Users of Your App You should identify a user of your app only when doing so offers a clear benefit to that user. In cases where you 阅读全文

posted @ 2016-06-01 17:24 cocoabanana 阅读(349) 评论(0) 推荐(0) 编辑

About Files and Directories(iOS文件与目录)

摘要: 参考: Every App Is an Island An iOS app’s interactions with the file system are limited mostly to the directories inside the app’s sandbox. app与文件系统交互被限 阅读全文

posted @ 2016-06-01 14:48 cocoabanana 阅读(223) 评论(0) 推荐(0) 编辑

2016年5月31日

main Runloop

摘要: 1.An app’s main run loop processes all user-related events 2.The UIApplication object sets up the main run loop at launch time and uses it to process 阅读全文

posted @ 2016-05-31 21:43 cocoabanana 阅读(222) 评论(0) 推荐(0) 编辑

2016年5月30日

iOS app基础

摘要: (一) 1). Info.plist : iOS通过它和app交互 The Info.plist file contains metadata about your app, which the system uses to interact with your app. The Informati 阅读全文

posted @ 2016-05-30 11:43 cocoabanana 阅读(256) 评论(0) 推荐(0) 编辑

导航