摘要: CMTime is defined in the CoreMedia.framework. Add that framework to your project. 阅读全文
posted @ 2018-08-31 17:23 小师傅啊小师傅 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 两种请求都有的情况下,会导致WebView加载不出来。 over 阅读全文
posted @ 2018-08-21 11:06 小师傅啊小师傅 阅读(1367) 评论(0) 推荐(0) 编辑
摘要: 国行手机第一次安装APP,会有请求网络权限的一个弹框出现,在这期间APP是没有任何网络连接的。 想必大部分APP的需求和这个逻辑有冲突。 先推荐一个链接:http://www.cocoachina.com/ios/20161125/18181.html 普通情况的解决方案还是蛮多的。 1.设置引导页 阅读全文
posted @ 2018-08-13 18:53 小师傅啊小师傅 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 如果page上方还有一层UI控件的话,不去除边缘点击手势会造成手势的冲突干扰。 首先我做的处理是设置pageView的手势代理 但是这样处理,会在第一页忘前翻页和在最后一页往后翻页出现crash,而且不清楚原因。 正确处理方法: 新建一个UIpageControlller的类别 完美解决! 阅读全文
posted @ 2018-08-08 18:38 小师傅啊小师傅 阅读(786) 评论(0) 推荐(0) 编辑
摘要: OC调用cocos-js 阅读全文
posted @ 2018-07-27 18:55 小师傅啊小师傅 阅读(918) 评论(0) 推荐(0) 编辑
摘要: NSString *str = [NSString stringWithFormat:@"%@://%@",[dic objectForKey:@"ios_url_scheme"],[dic objectForKey:@"app_bundle_id"]]; NSURL *app_url = [NSURL URLWithString:str]; BOOL hasInstal... 阅读全文
posted @ 2018-07-27 18:39 小师傅啊小师傅 阅读(567) 评论(0) 推荐(0) 编辑
摘要: extern的用法 我在ViewController.h中声明了一个全局变量TestA 在ViewController.m文件中赋值 然后如果我想在另外的文件中使用testA,例如在testViewController中。 只需要在testViewController中重新声明一下就可以了 这里会有 阅读全文
posted @ 2018-06-26 16:08 小师傅啊小师傅 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 其实之前在stackoverflow就看过一篇讲的比较详细的, https://stackoverflow.com/questions/14877415/difference-between-typeof-typeof-and-typeof-objective-c 个人理解两者只是编译方式不同,在g 阅读全文
posted @ 2018-06-22 10:55 小师傅啊小师傅 阅读(1087) 评论(0) 推荐(0) 编辑
摘要: UIViewController *vc =self.presentingViewController; while (![vc isKindOfClass:[[UIApplication sharedApplication].keyWindow.rootViewController class]] 阅读全文
posted @ 2018-06-13 15:53 小师傅啊小师傅 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 碰到过两次这种错误 感觉Xcode在乱报error 可能是资源的拓展名导致的问题 阅读全文
posted @ 2018-06-12 15:32 小师傅啊小师傅 阅读(123) 评论(0) 推荐(0) 编辑