之前使用hexo博客,并托管在coding上。由于最近coding的静态托管服务植入了广告,所以将自己的学习记录迁移到github上来。部分文章为自己的笔记,还有一部分为自己在学习过程中觉得不错的文章的原文链接。
-
允许IOS访问HTTP请求:
为info.plist添加App Transport Security Settings -》 Allow Arbitrary Loads:true
-
取消webapp中长按屏幕所触发的系统事件
-webkit-user-select: none;/*禁用手机浏览器的用户选择功能 */ -moz-user-select: none;
-
react-native android沉浸式状态栏设置
打开android->app->src->main->res->values->styles,在style标签内添加如下代码:
<item name="android:windowTranslucentStatus">true</item>
打开AndroidMainfest.xml 使用AppTheme(若已存在则可以不添加):
<application android:theme="@style/AppTheme"> > </application>