1 2 3 4 5 ··· 20 下一页
摘要: 说明:在mac设备运行一段时间后,电脑空间很小了,对于开发者来说,清清Xcode缓存,腾出几十G的空间还是有可能的。在升级Xcode适配新系统、新手机也是得给电脑减减压。 一、Xcode缓存文件(com.apple.dt.Xcode) 选删必要性:重新运行时候,再次生成,在安装新版Xcode时,还是 阅读全文
posted @ 2021-10-07 12:43 Mr·Xu 阅读(1329) 评论(0) 推荐(2) 编辑
摘要: 把我收藏多年的教学视频、项目源码分享给大家,大神就可以忽略了,很多东西都是基础性的,都是期初学习阶段收集的东西。 微信小程序(入门级,有web前端基础的人群): 链接: https://pan.baidu.com/s/11ueRkzaFb1oDKvfrgRLruQ 提取码: ahwt 复制这段内容后 阅读全文
posted @ 2019-05-11 16:24 Mr·Xu 阅读(310) 评论(4) 推荐(1) 编辑
摘要: 1、UIScrollView增加了属性allowsKeyboardScrolling表示是否根据连接的物理键盘的方向键而滚动。 import UIKit class ViewController: UIViewController { lazy var scrollView: UIScrollVie 阅读全文
posted @ 2023-09-14 17:45 Mr·Xu 阅读(3083) 评论(0) 推荐(0) 编辑
摘要: 这里有一个我自己编译的IJKMediaFramework,能解决目前Github上反馈很多常见的IJKPlayer使用问题(包含播放异常,UI主线程Crash等),替换自己项目中的IJKMediaFramework即可链接: https://pan.baidu.com/s/1UO-YfN_1YIDO 阅读全文
posted @ 2023-09-04 11:04 Mr·Xu 阅读(170) 评论(0) 推荐(0) 编辑
摘要: Git使用笔记 //查看某个命令文档 git help <command> git <command> -h git <command> --help 1.基本操作 用户配置 git config --global user.name "xujianfu" git config --global u 阅读全文
posted @ 2022-05-07 09:35 Mr·Xu 阅读(79) 评论(4) 推荐(2) 编辑
摘要: // // LaunchADView.swift // TianFeng // // Created by Apple on 2022/5/5. // import Foundation import UIKit public class LaunchADView: UIView { let scr 阅读全文
posted @ 2022-05-05 17:02 Mr·Xu 阅读(254) 评论(0) 推荐(1) 编辑
摘要: Vue中的事件修饰符: 1.prevent:阻止默认事件(常用); 2.stop:阻止事件冒泡(常用); 3.once:事件只触发一次(常用); 4.capture:使用事件的捕获模式; 5.self:只有event.target是当前操作的元素时才触发事件; 6.passive:事件的默认行为立即 阅读全文
posted @ 2022-05-03 14:49 Mr·Xu 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 发现问题:控制台报错"Error:java: 无效的源发行版: 13" 解决方法: 阅读全文
posted @ 2022-04-29 10:52 Mr·Xu 阅读(1515) 评论(0) 推荐(0) 编辑
摘要: remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://git 阅读全文
posted @ 2022-04-26 09:23 Mr·Xu 阅读(148) 评论(0) 推荐(1) 编辑
摘要: 接上文【iOS面试总结】疫情隔离中,线上面试的问题集合(第一部分) 6、Runtime 6.1 介绍下Runtime? oc是一门动态语言,所谓动态语言就是在编译阶段无法确定调用的函数以及属性的类型,只有在运行阶段首次确定类型和调用的函数。 runtime就是动态语言下核心的一个库,底层都会通过ob 阅读全文
posted @ 2022-04-22 18:41 Mr·Xu 阅读(164) 评论(0) 推荐(1) 编辑
摘要: 1、内存管理部分 1.1 介绍下内存管理机制 在iOS中,使用引用计数来管理OC对象的内存 一个新创建的OC对象引用计数默认是1,当引用计数减为0,OC对象就会销毁,释放其占用的内存空间,调用retain会让OC对象的引用计数+1,调用release会让OC对象的引用计数-1 内存管理的经验总结 M 阅读全文
posted @ 2022-04-22 18:31 Mr·Xu 阅读(491) 评论(1) 推荐(1) 编辑
摘要: Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage We noticed that after users authenticate their account with Sign in with Apple, they a 阅读全文
posted @ 2022-02-13 12:16 Mr·Xu 阅读(621) 评论(0) 推荐(1) 编辑
1 2 3 4 5 ··· 20 下一页