240 发简信
IP属地:北京
  • 120
    Raspberry Pi 3 - GPIO-PWM-Servo-Using SG90

    简单介绍用raspberry pi 3利用RPi.GPIO以PWM方式驱动伺服舵机TowerPro SG90. 准备工作: 1) Raspberry Pi 3 +Raspbi...

  • 如果要自己加UITableView到ViewController里面去,要记得注册cell class.
    self.tableViewFor.registerClass(UITableViewCell.self, forCellReuseIdentifier: "Cell")

    UITableView以及相关类

    UITableView中数据只有行的概念,并没有列的概念,手机操作系统中显示多列是不利于操作的。 UITableView有Group和不分组的default style. g...

  • UITableView以及相关类

    UITableView中数据只有行的概念,并没有列的概念,手机操作系统中显示多列是不利于操作的。 UITableView有Group和不分组的default style. g...

  • About iOS programming: Delegate

    关于Delegate设计模式. From Hacking with Swift, Project 4. Delegate,英语有两个词性, 一个是动词, 及物动词: 委派,...

  • 推荐学习顺序:
    Swift语法基础过一遍 ---> Hacking with Swift --->Programming iOS 9(去了解一些更细节的东西) ---> Github上的一些比较大的工程.

    Sketch做图标也略微学点儿吧。:)

    HACKING WITH SWIFT

    推荐一个SWIFT/iOS9 programming fundamental的教程:Hacking with Swift – learn to code iPhone and...

  • HACKING WITH SWIFT

    推荐一个SWIFT/iOS9 programming fundamental的教程:Hacking with Swift – learn to code iPhone and...

  • MyUIView
    <MyUIViewDelegate>
    MyUIViewController implements <MyUIViewDelegate>

    Chapter 1 Views (简略笔记)-Programming iOS 9

    视图是个UIView或者UIView的子类。它知道如何把自己画在一个矩形区域。 一个view同时也是个UIResponder( UIView是UIResponder的子类)....

  • Chapter 1 Views (简略笔记)-Programming iOS 9

    视图是个UIView或者UIView的子类。它知道如何把自己画在一个矩形区域。 一个view同时也是个UIResponder( UIView是UIResponder的子类)....

  • Container view controller -通过---> rootViewController 来管理subviews/subviews controllers.

    Chapter 1 Views (简略笔记)-Programming iOS 9

    视图是个UIView或者UIView的子类。它知道如何把自己画在一个矩形区域。 一个view同时也是个UIResponder( UIView是UIResponder的子类)....

  • There are two types of view controllers:

    Content view controllers manage a discrete piece of your app’s content and are the main type of view controller that you create.

    Container view controllers collect information from other view controllers (known as child view controllers) and present it in a way that facilitates navigation or presents the content of those view controllers differently.

    Chapter 1 Views (简略笔记)-Programming iOS 9

    视图是个UIView或者UIView的子类。它知道如何把自己画在一个矩形区域。 一个view同时也是个UIResponder( UIView是UIResponder的子类)....

  • Programming iOS 9 - APPENDIX A Application Lifetime Events

    从附录A开始吧. 因为理解应用的生命周期是理解开发的基础。 #应用生命周期事件 Your app’s one and only application object (a U...

  • summarizes the most important lifetime event messages sent to your app delegate

    总结一下一些最重要的应用生命周期内的, 发送给应用Delegate的消息。

    Preface 前言 1/3

    作者建议在读此书之前,需要先读iOS 9 Programming Fundamentals with Swift这本书,或者可以去苹果官方网站看Swift的教程,此书的目标人...