- 博客(13)
- 资源 (4)
- 收藏
- 关注
原创 Swift学习:Lesson8 --------- 项目应用(瀑布流布局)
1、使用collectionView实现瀑布流布局:(1)该方法准备布局初始化: override func prepare() {} (2)用于设置ContentView的ContentViewSize//swiftt3.0 废除了该方法:override func collectionViewContentSize()->CGSize{ } override va...
2018-07-06 16:55:28 367
原创 Swift学习:Lesson6 --------- 语法使用(函数)
1. 函数一些常用方法:func 函数名(参数,参数) -> 返回值类型 (1)无返回值无参数 :func method( )->Void{ } (2)无返回值有参数:func method(A A:Int, B:String )->Void{} (3)有返回值有参数:func method(A A:Int ,BV:Int )->...
2018-06-11 13:57:56 176
原创 Swift学习:Lesson5 --------- 语法使用(UIButton)
1、UIButton的使用://创建var push: UIButton!2、添加点击事件://为按钮添加点击事件:push.addTarget(self, action:#selector(pushNextController), for:.touchUpInside);3、方法的实现:@objc func pushNextController() -> Void { ...
2018-06-11 13:46:59 209
原创 Swift学习:Lesson4 --------- 语法使用(通知,协议)
1、通知://创建一个通知中心 let notifacationName:String = "NameCustom"; NotificationCenter.default.addObserver(self, selector: #selector(receiveValue), name:NSNotification.Name(rawValue: notifacationNa...
2018-06-11 13:40:58 228
原创 Swift学习:Lesson3 --------- 语法使用(枚举、结构体、类)
1、枚举的使用方式://枚举类型 enum SeasonTmp{ case Spring case Summer case Winter case Autumn}typealias Season = SeasonTmp;//定义别名另一种方式:enum Season2 :Int{ case Sprin...
2018-06-11 13:30:00 159
原创 Swift学习:Lesson2 --------- 语法使用(switch、while、repeat--while)
1、switch--case:参数:既可以是字符串、枚举类型、基本数据类型,也可以是元组(point) 总结:(1)swift 中没有Break或是默认为:break,也就是没有贯穿;(2)如果要实现贯穿,需要加上fallthrought;只能贯穿一次(3)swift中没有++,--,而是+=1,-=1.2、repeat--while var sum_01:Int = 10; ...
2018-06-11 12:12:30 250
原创 Swift学习:Lesson1 --------- 语法使用(元组、数组、字典)
1、元组(带有名称、不带名称、带有类型的初始化)的使用:(1)不带名称 var NoName = ("小明","今年",28,"一个姑娘","没有家"); print(NoName.1); NoName.1 = "天涯"; print(NoName.1);(2)带有名称 var nameTmp = (名称:"小明",date:"今年",age:28); prin
2018-06-11 10:43:23 165
原创 Vue.js学习:Lesson4---计算属性和侦听器
1、第一种方式:(export default中,data之外实现) computed:{ reversedMessageTH:function () { return this.messageTmp.split('').reverse().join('') } },2、在<div></div>中声明:<span>...
2018-06-09 17:56:16 126
原创 coding码市的运用
1、最初管理员的建立: (1)在码市中创建项目:(2)点击代码浏览:注意红色标注:(3)创建项目Test(Xcode),打开终端:切换到项目目录下:cd user/*******/Test (4)初始化本地仓库:git init (5) 进行本地与远端关联:git remote add origin https://git.coding.net/zhanggaotongTest/Test...
2018-06-04 21:39:33 1951
原创 Vue.js. -----实例的创建&&调用
实例的声明data(){ return{ message3: 'Hello', message4: 'Hello Vue.js' } }}
2018-05-30 10:02:29 585
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人