[置顶] iOS底层实现原理【高级进阶】

摘要: 想要进阶,想要提升自己一个更高档次,想要拥有更高比格的iOS开发攻城狮们,请关注 ↓↓↓ 我的简书:https://www.jianshu.com/u/3adf2f8593b8 我的掘金:https://juejin.im/user/5dd3f99c6fb9a01ffb355246 ♥ 欢迎大家来喷 阅读全文

posted @ 2019-12-19 11:12 在一起的浅蓝色 阅读(553) 评论(0) 推荐(0) 编辑

2021年6月10日

playground running一直卡解决

摘要: 每次运行 playground 的时候都会卡死 解决办法: - 关闭Xcode - 终端中执行 rm -rf ~/Library/Developer/CoreSimulator/Devices - 继续执行 killall -9 com.apple.CoreSimulator.CoreSimulat 阅读全文

posted @ 2021-06-10 11:01 在一起的浅蓝色 阅读(169) 评论(0) 推荐(0) 编辑

Swift——注释的规范写法

摘要: 推荐文章: https://blog.csdn.net/qq_14920635/article/details/89676810 官方写法:https://swift.org/documentation/api-design-guidelines/ 阅读全文

posted @ 2021-06-10 10:43 在一起的浅蓝色 阅读(96) 评论(0) 推荐(0) 编辑

2021年6月9日

二进制/八进制/十进制/十六进制

摘要: 推荐文章:https://www.zhihu.com/question/23131605 阅读全文

posted @ 2021-06-09 15:10 在一起的浅蓝色 阅读(41) 评论(0) 推荐(0) 编辑

2021年6月8日

Xcode详细介绍、全面剖析

摘要: 推荐文章:https://www.cnblogs.com/LuckyVan/p/9710715.html 阅读全文

posted @ 2021-06-08 15:51 在一起的浅蓝色 阅读(44) 评论(0) 推荐(0) 编辑

Xcode 12.0 Playground 创建入口没了?

摘要: 推荐文章:https://juejin.cn/post/6850418114501443597 阅读全文

posted @ 2021-06-08 14:38 在一起的浅蓝色 阅读(469) 评论(0) 推荐(0) 编辑

Flutter——TextField会出现文字向下偏移不会水平居中的问题

摘要: TextField中文字和两边的icon都不对齐,文字整体向下偏移,查阅了大量文案,给出的解决方案大致是: TextField( decoration: InputDecoration( contentPadding: EdgeInsets.all(0), border: InputBorder.n 阅读全文

posted @ 2021-06-08 11:39 在一起的浅蓝色 阅读(1168) 评论(0) 推荐(0) 编辑

2021年6月7日

Flutter——VSCode运行安卓模拟器

摘要: 首次运行会遇到以下报错信息: No suitable Android AVD system images are available. You may need to install these using sdkmanager, for example: sdkmanager "system-im 阅读全文

posted @ 2021-06-07 09:37 在一起的浅蓝色 阅读(1708) 评论(0) 推荐(0) 编辑

2021年6月4日

mac下配置adb环境变量

摘要: 终端执行: $ brew install bundletool 如果是第一次执行以上指令,没有配置过环境的,大部分都会报以下错误: 大致意思就是缺少读写权限问题,根据报错日志,我们继续执行以下指令 $ sudo chown -R $(whoami) /usr/local/lib/pkgconfig 阅读全文

posted @ 2021-06-04 15:08 在一起的浅蓝色 阅读(129) 评论(0) 推荐(0) 编辑

2021年6月3日

Flutter——多行文字展开收起

摘要: 明人不说暗话,直接上效果 收起状态↓ 展开状态↓ 相关SDK: expandable_text: 1.3.2 在 pubspec.yaml 文件中导入你想要的版本 再执行: $ flutter pub get 完成之后,项目中导入: import 'package:expandable_text/e 阅读全文

posted @ 2021-06-03 09:45 在一起的浅蓝色 阅读(1115) 评论(0) 推荐(0) 编辑

2021年5月28日

sourceTree报错:Updates were rejected because the tag already exists in the remote.

摘要: 新安装的sourceTree导入原有的项目,每次pull-push,都会报错:Updates were rejected because the tag already exists in the remote. 最烦的是每次还得在项目中手动执行一次 git push 解决办法是:在当前项目文件夹下 阅读全文

posted @ 2021-05-28 16:26 在一起的浅蓝色 阅读(477) 评论(0) 推荐(0) 编辑

导航