posted @ 2019-04-26 09:59 陈小鑫 阅读(587) 评论(0) 推荐(0) 编辑
摘要:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport command+shift +G 阅读全文
摘要:
info权限配置: Privacy - Bluetooth Peripheral Usage Description --> App需要您的同意,才能访问蓝牙 Privacy - Calendars Usage Description --> App需要您的同意,才能访问日历 Privacy - C 阅读全文
posted @ 2019-04-26 09:58 陈小鑫 阅读(1475) 评论(0) 推荐(0) 编辑
摘要:
cordova platform add ios@latest 安装最新iosionic cordova build ios -- --buildFlag="-UseModernBuildSystem=0"删除libstdc++.6 xcode不再支持 阅读全文
posted @ 2019-04-26 09:54 陈小鑫 阅读(228) 评论(0) 推荐(0) 编辑
摘要:
<dict> <key>aps-environment</key> <string>production</string> </dict> 修改:Entitlements-Release.plist 阅读全文
posted @ 2019-04-22 21:34 陈小鑫 阅读(284) 评论(0) 推荐(0) 编辑
摘要:
ionic3 生命周期 ionViewWillLeave,当页面关闭离开时 执行的事件, 从页面根部跳转 this.appCtrl.getRootNav().setRoot() 方法离开时是 不执行 ionViewWillLeave方法。 this.navCtrl.push()方法离开 执行 ion 阅读全文
posted @ 2019-03-15 14:23 陈小鑫 阅读(1392) 评论(0) 推荐(0) 编辑
摘要:
在全局css中加入 @media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) { .tabs-ios .tabbar{ padding-bot 阅读全文
posted @ 2019-03-11 13:55 陈小鑫 阅读(595) 评论(0) 推荐(0) 编辑
摘要:
在json中 添加 "navigationBarTextStyle": "white", 阅读全文
posted @ 2019-01-21 10:55 陈小鑫 阅读(10191) 评论(0) 推荐(0) 编辑
摘要:
git clone //克隆远程项目 git branch -a //查看分支 红色代表远程 绿色代表本地 git checkout 分支名 //切换分支 git add * //合并所有 git commit -m '提交的注释语' git pull 拉取线上 git push git branc 阅读全文
posted @ 2018-09-29 14:50 陈小鑫 阅读(202) 评论(0) 推荐(0) 编辑
摘要:
在 Page 中定义 onPullDownRefresh 处理函数,监听该页面用户下拉刷新事件。 例: "window": { "enablePullDownRefresh": true } 如果只需要在某个页面中下拉加载: 阅读全文
posted @ 2018-08-31 11:50 陈小鑫 阅读(230) 评论(0) 推荐(0) 编辑