当前位置:首页 > 移动开发 >

文章分类:移动开发

移动开发 iOS 13 statusBarWindow on UIApplication: this code must be c

突然的崩溃让我措手不及 *** Terminating app due to uncaught exception ‘NSInternalInconsistencyException‘, reason: ‘App called -statusBar or -statusBarWindow on UIApplication: this code must be changed as there‘s no longer……

移动开发 pkg_resources.DistributionNotFound: The 'pip==7.1.0&

问题描述:【 问题未解决,这里只是先记录下来 】 Traceback (most recent call last): File "/usr/bin/pip", line 5, in module from pkg_resources import load_entry_point File "/usr/local/python3/lib/python3.8/site-packages/p……

移动开发 Hybrid App: 看看第三方WebViewJavascriptBridge是如何来实现Native和JavaScr

一、简介 在前面两篇文章中已经介绍了Native与JavaScript交互的几种方式,依次是JavaScriptCore框架、UI组件UIWebView、WebKit框架,这几种方式都是苹果公司提供的,除了UIWebView在IOS8之后被苹果……

移动开发 Sturts2整合Spring报错:org.springframework.beans.factory.BeanDefi

十一月 17, 2019 1:11:44 下午 org.apache.tomcat.util.digester.SetPropertiesRule begin 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property ‘source‘ to ‘org.eclipse.jst.jee.server:ssh022‘ did not find……

移动开发 spring boot 下 mapper接口与xml文件映射问题

1.@MapperScan @MapperScan("com.streamax.ums.business.dao") 注解扫描的包路径是否有问题 2. 目录结构 mapper接口文件所在目录结构需要与对应xml文件的目录结构保持一致 3. namespace xml 的 namespace 属性和……

移动开发 移动端自适应宽高比2:1

template div class="icons" icons /div/templatescript export default { name: ‘HomeIcons‘ } /scriptstyle lang="stylus" .icons onerflow :hidden height: 0 padding-bottom: 50% background :lightblue /style……

移动开发 ios 面试题之多线程死锁

死锁 死锁就是队列引起的循环等待 1、一个比较常见的死锁例子:主队列同步 - (void)viewDidLoad { [super viewDidLoad]; dispatch_sync(dispatch_get_main_queue(), ^{ NSLog(@"deallock"); }); // Do any additional setup a……

移动开发 关于Sign in with Apple 后台验证的一些记录

2019年10月9号 下午两点 距离新版本上线还有三个小时 伟大尊敬可爱的产品经理又特么加需求了 IOS端新增Sign in with Apple IOS真是世界上最垃圾的语言,没有之一,苹果是世界上最垃圾的公……

移动开发 移动端监听上滑下滑(判断元素是否滚动到底部)

touchUp(){ var startY = 0 ; let that = this ; document.addEventListener( "touchstart", function (e){ startY = e.changedTouches[0 ].pageY; }, false ); document.addEventListener( "touchmove", function (e){ var endY = e.changedTouches[0 ].page……

移动开发 移动端1像素解决方法,根据媒体查询transform缩放

.borderOnePx{ position: relative;}.borderOnePx::after { content: ‘‘; height:1px; background:#000; -webkit-transform: scaleY(0.5); -webkit-transform-origin:0 0; overflow: hidden;}/* 2倍屏 */@media only screen and (-webkit-min-device-pi……