摘要:
完整报错 Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'NSWindow drag regions should only be invalidated on the Ma 阅读全文
摘要:
NSAlert *alert = [[NSAlert alloc] init]; alert.messageText = @"主标题"; alert.informativeText = content;//内容 [alert addButtonWithTitle:@"确定"];//按钮所显示的文案 阅读全文
摘要:
起因 本人在开发一个Mac应用程序时需要使用到SSZipArchive进行解压文件的操作,本来应该是十分简单的,只需要集成一下SSZipArchive库,给出源路径与目标路径传入指定方法即可。 问题 我根据网上教程,使用[SSZipArchive unzipFileAtPath:src toDest 阅读全文
摘要:
本帖作为记录,具体解析在此:https://www.jianshu.com/p/949d8de2cb91 阅读全文
摘要:
请根据每日 气温 列表,重新生成一个列表。对应位置的输出为:要想观测到更高的气温,至少需要等待的天数。如果气温在这之后都不会升高,请在该位置用 0 来代替。 例如,给定一个列表 temperatures = [73, 74, 75, 71, 69, 72, 76, 73],你的输出应该是 [1, 1 阅读全文