1.运行效果图 2.swift 代码的实现 import UIKit class RefreshWebViewController: UIViewController,UIScrollViewDelegate,UIWebViewDelegate{ @IBOutlet weak var webView ...
分类:
移动开发 时间:
2016-11-16 19:56:32
阅读次数:
376
混编 混编也无非两种情况, 在Objective - C工程或者文件使用Swift的文件; 在Swift工程或者文件使用Objective - C文件。 在混编的过程中最重要的两个文件: 1.桥接文件 桥接文件“ProjectName-Bridging-Header.h”,在首次创建其他文件的时候, ...
分类:
编程语言 时间:
2016-11-16 19:31:46
阅读次数:
176
一、键盘风格 UIKit框架支持8种风格键盘。 typedef enum { UIKeyboardTypeDefault, // 默认键盘:支持所有字符 UIKeyboardTypeASCIICapable, // 支持ASCII的默认键盘 UIKeyboardTypeNumbersAndPunct ...
分类:
其他好文 时间:
2016-11-16 19:24:40
阅读次数:
153
//: Playground - noun: a place where people can play import UIKit var str = "Hello, playground" let individualScores = [75, 43, 103, 87, 12]; var team ...
分类:
编程语言 时间:
2016-11-16 02:55:49
阅读次数:
277
//: Playground - noun: a place where people can play import UIKit var str = "Hello, playground" func greet(name: String, day: String) ->String { retur ...
分类:
编程语言 时间:
2016-11-16 02:41:34
阅读次数:
185
//: Playground - noun: a place where people can play import UIKit var str = "Hello, playground" //var 声明变量 很像JavaScript var myVariable = 42; myVariabl ...
分类:
编程语言 时间:
2016-11-16 02:22:05
阅读次数:
302
import UIKit class ViewController: UIViewController,UITextFieldDelegate { var textField: UITextField! override func viewDidLoad() { super.viewDidLoad( ...
分类:
编程语言 时间:
2016-11-15 13:56:17
阅读次数:
222
一、Quartz2D简单介绍 在iOS中常用的绘图框架就是Quartz2D,Quartz2D是Core Graphics框架的一部分,我们日常开发使用的所有UIKit组件都是由Core Graphics进行绘制的 UIKit默认为我们提供了一个图形上下文,在UI控件的drawRect:方法中调用UI ...
分类:
移动开发 时间:
2016-11-15 11:13:33
阅读次数:
258
API reference Swift UIKit ...
分类:
编程语言 时间:
2016-11-13 02:01:47
阅读次数:
135