码迷,mamicode.com
首页 >  
搜索关键字:uikit    ( 1245个结果
ios xcode如何在控制台打印frame
进入正题 打开终端输入三条命令: 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
UIDynamic仿物理引擎-浮动碰撞效果-b
最近产品提了个需求(电商的APP-两鲜),需要在APP背景加上几个水果图案在那里无规则缓慢游荡。。。模仿 天天果园 APP的。好吧,那我就在网上找了很多文章,总结一下写个demo。效果如下: Mou icon 这里用到的是UIDynamic这个类。 一、简介 注意:UIKit动力学的引入,并不是为了 ...
分类:其他好文   时间:2016-09-21 01:30:32    阅读次数:143
swift学习第一天:认识swift以及swift的常量和变量
一:认识swift Playground是什么? 从Xcode6开始出现(Swift开始出现) 翻译为:操场/游乐场 对于学习Swift基本语法非常方便 所见即所得(快速查看结果) 语法特性发生改变时,可以快速查看. Swift最基本的语法变化 导入框架 import UIKit 定义标识符时,必须 ...
分类:编程语言   时间:2016-09-17 12:02:06    阅读次数:172
swift-Array(数组相关属性)
// // 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
iOS10 Xcode8问题汇总
【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:"subsystem: com.apple.UIKit, category: HIDEventFiltered, enable_level: 0" 的警告
运行xcode8遇到这个警告: Product–>Scheme–>Edict Scheme 然后显示如下: 如果没有OS_ACTIVITY_MODE字段,添加该字段, 如果该字段存在,就设置Value值为disable,并且打钩, 最后Close即可. ...
分类:移动开发   时间:2016-09-14 16:24:08    阅读次数:381
iOS开发技巧(系列十八:扩展UIColor,支持十六进制颜色设置)
新建一个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
iOS-Swift-String(字符串常规用法)
// // 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
Swift-UIButton属性
// // 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
UIView的分类--iOS
#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
1245条   上一页 1 ... 26 27 28 29 30 ... 125 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!