上一页 1 2 3 4 5 6 ··· 36 下一页

2024年2月28日

macOS系统下的VScode开发工具怎么由中文切换英文

摘要: 打开VScode开发工具。 按住快捷键ctrl+shift+p,在弹出的搜索框中输入Configure Display Language,选择这个选项。 在打开的配置文件locale.json中,找到"locale": "zh-cn"这一行,并将其修改为"locale": "en-US"。注意,这里 阅读全文

posted @ 2024-02-28 13:59 高彰 阅读(52) 评论(0) 推荐(0) 编辑

2024年1月16日

微信小程序分享链接

摘要: #小程序://拾光相机/AfSYOr8Oxgxy7oF postman :gaozhang666 a7210777 https://www.shulantt.com 树懒投投 阅读全文

posted @ 2024-01-16 13:24 高彰 阅读(28) 评论(0) 推荐(0) 编辑

2023年12月25日

iOS macOS开发Xcode调试po等语法总结

摘要: 1. p 和 po 命令 p 命令是 print 的缩写,查看基本数据类型的值,如果使用p命令查看的事对象,那么只会返回对象的额指针地址,p 命令后面除了可以接收变量,常量,还可以接 表达式。 po:print object的缩写,a56爆大奖在线娱乐显示对象的a56爆大奖在线娱乐描述,如果对象不存在则打印nil。 ?p 和 po 阅读全文

posted @ 2023-12-25 16:49 高彰 阅读(233) 评论(0) 推荐(0) 编辑

2023年11月8日

macOS开发NSNotification的Name列表

摘要: 系统NSNotification的Name列表 AVAudioEngineConfigurationChangeNotification 当音频引擎配置发生变化时 AVAudioSessionInterruptionNotification 发生音频中断发生。 AVAudioSessionMedia 阅读全文

posted @ 2023-11-08 18:05 高彰 阅读(112) 评论(0) 推荐(0) 编辑

2023年11月2日

macOS NSSwitch简单使用

摘要: 做iOS和macOS开发的小伙伴都知道,苹果经常使用的新的控件取代旧的控件,本篇文章讲述的也是一个macOS10.15前可用的开关控件(部分情况下会报错)。但在这里的demo是可以运行的 a56爆大奖在线娱乐们先看效果图: 这里的0就是关闭状态,1是打开状态 接着a56爆大奖在线娱乐们就上代码: #import "ViewContro 阅读全文

posted @ 2023-11-02 16:10 高彰 阅读(61) 评论(0) 推荐(0) 编辑

2023年9月26日

macos 弹窗

摘要: // MainNewsInformationViewController *vc = [[MainNewsInformationViewController alloc]init]; // NSPanel *panel = [NSPanel panelWithViewController:vc fr 阅读全文

posted @ 2023-09-26 18:00 高彰 阅读(33) 评论(0) 推荐(0) 编辑

2023年9月14日

微信小程序遇到[object object]怎么打印出里面的值?

摘要: 解决办法 let stationInfo = JSON.stringify(that.data.gridList);//that.data.gridList是要打印的数组 console.log('a56爆大奖在线娱乐们收到的数据rrrrrr:' + stationInfo) 阅读全文

posted @ 2023-09-14 17:29 高彰 阅读(184) 评论(0) 推荐(0) 编辑

2023年8月30日

macOS 获取系统设置外观获取系统深色模式皮肤

摘要: #import "ViewController.h" - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. //控件布局 [self layoutSubViews]; 阅读全文

posted @ 2023-08-30 11:16 高彰 阅读(40) 评论(0) 推荐(0) 编辑

2023年8月25日

maoOS NSViewController窗口禁止拖动拉宽拉高NSViewController禁用调整大小

摘要: self.view.frame = CGRectMake(420, 300, 1000, 800); self.preferredContentSize = NSMakeSize(self.view.frame.size.width, self.view.frame.size.height); // 阅读全文

posted @ 2023-08-25 16:22 高彰 阅读(53) 评论(0) 推荐(0) 编辑

2023年8月24日

iOS macOS中的三大计时器(NStimer、CADisplayLink、dispatch_source_set_timer)

摘要: 一、介绍 在iOS macOS中,计时器是比较常用的,用于统计累加数据或者倒计时等,例如手机号获取验证码。计时器大概有那么三种,分别是:NSTimer、CADisplayLink、dispatch_source_set_timer 二、使用 @property (strong,nonatomic)N 阅读全文

posted @ 2023-08-24 15:46 高彰 阅读(159) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 36 下一页

导航