进入正题 打开终端输入三条命令: 1. touch ~/.lldbinit 2. echo display @import UIKit >> ~/.lldbinit 3. echo target stop-hook add -o \"target stop-hook disable\" >> ~/. ...
分类:
移动开发 时间:
2016-09-23 12:34:46
阅读次数:
167
最近产品提了个需求(电商的APP-两鲜),需要在APP背景加上几个水果图案在那里无规则缓慢游荡。。。模仿 天天果园 APP的。好吧,那我就在网上找了很多文章,总结一下写个demo。效果如下: Mou icon 这里用到的是UIDynamic这个类。 一、简介 注意:UIKit动力学的引入,并不是为了 ...
分类:
其他好文 时间:
2016-09-21 01:30:32
阅读次数:
143
一:认识swift Playground是什么? 从Xcode6开始出现(Swift开始出现) 翻译为:操场/游乐场 对于学习Swift基本语法非常方便 所见即所得(快速查看结果) 语法特性发生改变时,可以快速查看. Swift最基本的语法变化 导入框架 import UIKit 定义标识符时,必须 ...
分类:
编程语言 时间:
2016-09-17 12:02:06
阅读次数:
172
// // ViewController.swift // Swift-Array // // Created by luorende on 16/9/12. // Copyright © 2016年 luorende. All rights reserved. // import UIKit cl ...
分类:
编程语言 时间:
2016-09-15 00:58:54
阅读次数:
751
【1】、Xcode8代码出现ubsystem: com.apple.UIKit, category: HIDEventFiltered, enable_level: 0, persist_level: 0, default_ttl: 0, info_ttl: 0, debug_ttl: 0, gen ...
分类:
移动开发 时间:
2016-09-15 00:58:14
阅读次数:
534
运行xcode8遇到这个警告: Product–>Scheme–>Edict Scheme 然后显示如下: 如果没有OS_ACTIVITY_MODE字段,添加该字段, 如果该字段存在,就设置Value值为disable,并且打钩, 最后Close即可. ...
分类:
移动开发 时间:
2016-09-14 16:24:08
阅读次数:
381
新建一个Category,命名为UIColor+Hex,表示UIColor支持十六进制Hex颜色设置。 UIColor+Hex.h文件, #import <UIKit/UIKit.h> #define RGBA_COLOR(R, G, B, A) [UIColor colorWithRed:((R) ...
分类:
移动开发 时间:
2016-09-13 16:32:12
阅读次数:
210
// // ViewController.swift // Swift-String // // Created by luorende on 16/9/10. // Copyright © 2016年 luorende. All rights reserved. // import UIKit c ...
分类:
移动开发 时间:
2016-09-11 20:11:57
阅读次数:
477
// // ViewController.swift // Swift-UIButton // // Created by luorende on 16/9/9. // Copyright © 2016年 luorende. All rights reserved. // import UIKit ...
分类:
编程语言 时间:
2016-09-11 01:26:54
阅读次数:
366
#import <UIKit/UIKit.h> @interface UIView (PJXExtension) @property(assign,nonatomic) CGFloat x; //x坐标 @property(assign,nonatomic) CGFloat y; //y坐标 @pr ...
分类:
移动开发 时间:
2016-09-09 00:32:20
阅读次数:
259