- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
2018-05-03 18:31:54.879424+0800 writer[5656:137819] warning: illegal subclass SHKRemoteView instantiating; client should use only NSRemoteView ( 0 ViewBridge
0x00007fff7a0cabff -[NSRemoteView _preSuperInit] + 195 1 ViewBridge 0x00007fff7a0caf83 -[NSRemoteView initWithFrame:] + 25 2 ShareKit
0x00007fff763b7aa5 -[SHKRemoteView initWithOptionsDictionary:] + 161 3 ShareKit 0x00007fff76396fbd 38-[SHKSharingService performWithItems:]_block_invoke_4 + 1347 4 libdispatch.dylib 0x00000001019eacfe _dispatch_call_block_and_release + 12 5 libdispatch.dylib 0x00000001019e2ddf _dispatch_client_callout + 8 6 libdispatch.dylib 0x00000001019eee59 _dispatch_main_queue_callback_4CF + 549 7
CoreFoundation 0x00007fff5515bc69 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE + 9 8 CoreFoundation 0x00007fff5511de4a __CFRunLoopRun + 2586 9 CoreFoundation 0x00007fff5511d1a3 CFRunLoopRunSpecific + 483 10 HIToolbox
0x00007fff54405d96 RunCurrentEventLoopInMode + 286 11 HIToolbox
0x00007fff54405b06 ReceiveNextEventCommon + 613 12 HIToolbox
0x00007fff54405884 _BlockUntilNextEventMatchingListInModeWithFilter + 64 13 AppKit 0x00007fff526b8a73 _DPSNextEvent + 2085 14 AppKit 0x00007fff52e4ee34 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 3044 15 AppKit 0x00007fff526ad885 -[NSApplication run] + 764 16 AppKit 0x00007fff5267ca72 NSApplicationMain + 804 17 writer111
0x00000001002adf9d main + 13 18 libdyld.dylib
0x00007fff7d437015 start + 1 19 ???
0x0000000000000003 0x0 + 3 )
虽然效果很好,但这个警告消息让我很烦,我希望它会消失。
一个很简单的方法,却有这样一个警告。
let sharingService = NSSharingServicePicker(items: ["111"]);
sharingService.show(relativeTo: sender.bounds, of: sender, preferredEdge: .minX);
最佳答案
我不知道警告的原因,但我可以通过在新的运行循环上显示选择器来使其静音:
let sharingService = NSSharingServicePicker(items: ["111"]);
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now(), execute: {
sharingService.show(relativeTo: sender.bounds, of: sender, preferredEdge: .minX)
})
关于swift - 使用 NSSharingServicePicker 类时出现警告信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50152960/
假设我想分享一张图片、一些文本和一个任意文件(例如 plist)。 如果我尝试使用 NSSharingServicePicker,它只会显示可以处理所有三种类型 的共享服务。所以它不会显示 Air D
2018-05-03 18:31:54.879424+0800 writer[5656:137819] warning: illegal subclass SHKRemoteView instanti
在我的 Mac 应用程序中,我使用 NSSharingServicePicker 来邮寄一些项目。我的问题是我想设置要发送的默认电子邮件地址。如何设置此值以在邮件客户端打开时显示它? 我有这个代码:
我正在向我的应用添加共享功能(针对 Mavericks,10.9),我希望它的工作方式如下: 用户点击“分享”按钮 光标变为十字线 用户拖动选择他想要分享的内容 显示 NSSharingService
我正在学习 Swift 并为 OS X 创建我的第一个项目。当用户按下按钮“shareButton”时,我希望 NSSharingServicePicker 弹出窗口显示在该按钮上。 我用这段代码创建
我正在尝试在 SwiftUI 的 MacOS 应用程序中使用共享功能。我有一个文件的 URL,我想分享它。它可以是图像/文档等等。 我找到了 NSSharingServicePicker适用于 Mac
我正在学习 Objective-C/Cocoa 并已将源代码下载到 a popular TeX typesetter并在 XCode 中加载该项目来使用它。编译失败,并且我(到目前为止)看到的所有错误
我是一名优秀的程序员,十分优秀!