摘要: cocos2dx的坐标系是以左下角为(0,0)点, 向右上为正 世界坐标系:相对于屏幕位置的坐标表示 节点坐标系:相对于父节点的坐标表示 可以相互转换: convertToNodeSpaceVec2 newPosition = node1->convertToNodeSpace(node2->get 阅读全文
posted @ 2016-10-20 09:54 侯文超 阅读(4634) 评论(0) 推荐(0) 编辑
摘要: 库是共享程序代码的方式,一般分为静态库和动态库。 静态库:链接时完整地拷贝至可执行文件中,被多次使用就有多份冗余拷贝。 iOS中静态库形式: .a和.framework 动态库:链接时不复制,程序运行时由系统动态加载到内存,供程序调用,系统只加载一次,多个程序共用,节省内存。 iOS中动态库形式:  阅读全文
posted @ 2016-10-18 15:34 侯文超 阅读(859) 评论(0) 推荐(0) 编辑
摘要: 属性 说明 @property (nonatomic, copy) NSURL *contentURL 播放媒体URL,这个URL可以是本地路径,也可以是网络路径 @property (nonatomic, readonly) UIView *view 播放器视图,如果要显示视频必须将此视图添加到控 阅读全文
posted @ 2016-09-30 09:58 侯文超 阅读(232) 评论(0) 推荐(0) 编辑
摘要: NSDateComponents将时间表示成适合人类阅读和使用的方式, 首先要遵循某种历法 NSCalendar * cal = [NSCalendar currentCalendar]; 有三种用法: 1.获取某个时间点的NSDateComponents表示 unsigned int unitFl 阅读全文
posted @ 2016-09-08 13:25 侯文超 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 简单的就不说了,网上很多教程 设置优先级 [label setContentCompressionResistancePriority:UILayoutPriorityRequired forAxis:UILayoutConstraintAxisHorizontal] 阅读全文
posted @ 2016-08-25 17:58 侯文超 阅读(135) 评论(0) 推荐(0) 编辑
摘要: UISearchBar http://blog.sina.com.cn/s/blog_7b9d64af0101dfg8.html UISearchController //创建 self.searchC = [[UISearchController alloc] initWithSearchResu 阅读全文
posted @ 2016-08-05 20:50 侯文超 阅读(371) 评论(0) 推荐(0) 编辑
摘要: NSDateFormatter的创建很耗费资源, 使用比较多的时候最好创建一个单例, 而不是一直创建 时区:默认使用的是系统时区, 也可手动设置时区 NSDateFormatter *Formatter = [[NSDateFormatter alloc] init]; [Formatter set 阅读全文
posted @ 2016-07-27 19:23 侯文超 阅读(149) 评论(0) 推荐(0) 编辑
摘要: NSDate *date = [NSDate date]; //返回0时区, 当前时间 date = [NSDate dateWithTimeIntervalSinceNow:10]; //返回0时区, 距离现在10秒之后的时间 date = [NSDate dateWithTimeInterval 阅读全文
posted @ 2016-07-25 20:36 侯文超 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 一、时间戳 -> 时间 NSDate *date = [NSDate dateWithTimeIntervalSince1970:myOrder.orderTimeStart]; NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; 阅读全文
posted @ 2016-07-13 18:21 侯文超 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 1,MBProgressHUD常用属性和用法Demo - (void)testMBProgressHUD { NSLog(@"test MBProgressHUD "); /* 要将一个MBProgressHUD显示出来,1,创建对象;2,将HUD添加到view上;3,调用show方法 隐藏,1,h 阅读全文
posted @ 2016-07-01 16:42 侯文超 阅读(1184) 评论(0) 推荐(0) 编辑