上一页 1 2 3 4 5 6 7 ··· 37 下一页

2024年1月16日

微信小程序分享链接

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

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

2023年12月25日

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

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

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

2023年11月8日

macOS开发NSNotification的Name列表

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

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

2023年11月2日

macOS NSSwitch简单使用

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

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

2023年9月26日

macos 弹窗

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

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

2023年9月14日

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

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

posted @ 2023-09-14 17:29 高彰 阅读(278) 评论(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 高彰 阅读(60) 评论(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 高彰 阅读(71) 评论(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 高彰 阅读(226) 评论(0) 推荐(0) 编辑

2023年8月10日

Mac OS 开发中监听键盘事件

摘要: 在iOS开发中,监听键盘比较好找。但是在Mac开发中监听键盘事件比较难找到相应的方法。下面的两个方法就是Mac开发中常用的监听键盘的方法。 //键盘按下时 - (void)keyDown:(NSEvent *)event{ } //键盘弹起时 - (void)keyUp:(NSEvent *)eve 阅读全文

posted @ 2023-08-10 10:44 高彰 阅读(117) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 37 下一页

导航